cober2019 / IPregexo

Validating and Classifying IPv4 Address

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IPregex

Validating and Classifying IPv4 Address

Prerequisites:

  • 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

Installing:

  • 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

Examples:

    1. Check vaild IP format and print message if so.

    1. Check vaild IP format and return Boolean result if so.

    1. Using if statemnt with IP Class C check Boolean.

Commands:

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

Authors

  • Omar Adil - Network Engineer - Linkedin

License

This project is licensed under the MIT License - see the LICENSE file for details

About

Validating and Classifying IPv4 Address

License:MIT License


Languages

Language:Python 100.0%