Validating and Classifying IPv4 Address
- Linux OS
- Python >=3.5 "pre-installed"
python3 --version
- Python pip3 "If not installed feel free to surf the web for installation guide based on your OS"
pip3 --version
- Download and install IPregexo python package
pip3 install IPregexo
Take care PyPi packages name are case sensitive
- Import IPrexego on every python script you want to use it on
from IPregexo import IPregexo
-
- Check vaild IP format and print message if so.
-
- Check vaild IP format and return Boolean result if so.
-
- Using if statemnt with IP Class C check Boolean.
Command | Description |
---|---|
check_IP |
Vaildate IP format and print Message |
checkB_IP |
Vaildate IP format and return Boolean |
check_IP_Private |
Vaildate if Private IP and print Message |
checkB_IP_Private |
Vaildate if Private IP and return Boolean |
check_IP_Private_A |
Vaildate if Private IP Class A and print Message |
checkB_IP_Private_A |
Vaildate if Private IP Class A and return Boolean |
check_IP_Private_B |
Vaildate if Private IP Class B and print Message |
checkB_IP_Private_B |
Vaildate if Private IP Class B and return Boolean |
check_IP_Private_C |
Vaildate if Private IP Class C and print Message |
checkB_IP_Private_C |
Vaildate if Private IP Class C and return Boolean |
- Omar Adil - Network Engineer - Linkedin
This project is licensed under the MIT License - see the LICENSE file for details