Guides
Last Updated Apr 11, 2024

IP Address Validation in Python using Regex

Table of Contents:

Get your free
API
key now
4.8 from 1,863 votes
See why the best developers build on Abstract
START FOR FREE
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
No credit card required
Get your free
IP Geolocation API
key now
4.8 from 1,863 votes
See why the best developers build on Abstract
START FOR FREE
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
No credit card required

Validate an IP Using Python and Regex

Building your own custom Regex to check the shape of the provided IP string is fairly straightforward in Python. Python provides a library called re for parsing and matching Regex.

This method requires you to check that the string is the right shape and that the values in each section are between 0 and 255. In this tutorial, we’ll validate an IPv4 address, but in practice, you should write two separate functions to check an IPv4 address vs an IPv6 address, and it’s not advised to use Regex for an IPv6 address.

Let’s send your first free
API
IP Geolocation API
call
See why the best developers build on Abstract
Get your free api

IPv4 Addresses

An IPv4 address looks like this

123.456.78.90

There can be slight variations, but in general, the address will consist of one or more sections of one to three digits, separated by periods.

Write the Regular Expression

Create a Regex string that matches a valid IP address for IPv4. The clearest way to do this is the following:



"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"

Let’s break down the parts of this expression. 



[0-9]

This indicates that we’re looking for any one of the characters inside the brackets. In this case, we’re looking for a digit or numeric character between 0 and 9



{1,3}

The numbers between the curly braces indicate that we’re looking for as few as one or as many as three instances of the previous character. In this case, we’re looking for as few as one or as many as three digits.



\.

In Regex, the “.” character is a special character that means “any character.” In order to find the actual “.” character, we have to escape it with a backslash. This indicates that we are looking for a literal “.” character.

Those three components make up one byte of an IP address (for example, “192.”) To match a complete valid IP address, we repeat this string four times (omitting the final period.)

Use the Regular Expression

Import the Python re module. Use the match() method from the module to check if a given string is a match for our Regex.

Using match()

The match() method takes two arguments: a Regex string and a string to be matched.  



import re
match = re.match(r"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}", "127.0.0.1")
print(match)



>>> <re.Match object; span=(0, 9), match='127.0.0.1'>

If the string is a match, re will create a Match object with information about the match. If we are simply trying to determine that a match was found, we can cast the result to a boolean.



print(bool(match))

 


>>> True

Using search()

The search() method also takes two arguments: a Regex string and a string to be searched.



import re
found = re.search(r"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}", "127.0.0.1")
print(match)



>>> True

The difference between search and match is that search will return a boolean value if a match is found in the string.

Check for Numerical Limits

No IP address can contain a string of three numbers greater than 255. What if the user inputs a string that includes a 3-digit sequence greater than 255? Right now, our Regex matcher would return True even though that is an invalid IP address.

We need to perform a final check on our string to make sure that all of the digit groups in it are numerical values between 0 and 255.

The easiest way to do this is to iterate over the string and check each three-digit numerical grouping. If the sequence of digits is greater than 255 or less than 0, return False.



  bytes = ip_address.split(".")
  
   for ip_byte in bytes:
       if int(ip_byte) < 0 or int(ip_byte) > 255:
           print(f"The IP address {ip_address} is not valid")
           return False

Put It Together

Here’s an example of a complete Regex validation function in Python using re.search() and our custom iterator.



def validate_ip_regex(ip_address):
  
   if not re.search(r"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}", "127.0.0.1", ip_address):
       print(f"The IP address {ip_address} is not valid")
       return False

   bytes = ip_address.split(".")
  
   for ip_byte in bytes:
       if int(ip_byte) < 0 or int(ip_byte) > 255:
           print(f"The IP address {ip_address} is not valid")
           return False
   print(f"The IP address {ip_address} is valid")
   return True



 Additional Method

Validate an IP Address Using a Third-Party API

The API allows you to send an IP string for validation, or, if you send an empty request, it will return information about the IP address of the device from which the request was made. This is handy if you also need to know what the IP address of the device is.

Get Started With the API

Acquire an API Key

Go to the API documentation page. You’ll see an example of the API’s JSON response object to the right, and a blue “Get Started” button to the left.

Click “Get Started.” If you’ve never used AbstractAPI before, You’ll need to create a free account with your email and a password. If you have used the API before, you may need to log in.

Once you’ve signed up or logged in, you’ll land on the API’s homepage where you should see options for documentation, pricing, and support, along with your API key and tabs to view test code for supported languages.

Make an API Request With Python

Your API key is all you need to get information for an IP address. Let’s use the Python requests module to send a request to the API.



import requests
def get_geolocation_info():
   try:
       response = requests.get(
      "https://ipgeolocation.abstractapi.com/v1/?api_key=YOUR_API_KEY")
       print(response.content)
   except requests.exceptions.RequestException as api_error:
       print(f"There was an error contacting the Geolocation API: {api_error}")
       raise SystemExit(api_error)

When the JSON response comes back, we print it to the console, but in a real app you would use the information in your app. If the IP address is invalid, the API will return an error. Use the error information as your validator.

The JSON response that AbstractAPI sends back looks something like this:



{
    "ip_address": "XXX.XX.XXX.X",
    "city": "City Name",
    "city_geoname_id": ID_NUMBER,
    "region": "Region",
    "region_iso_code": "JAL",
    "region_geoname_id": GEONAME_ID,
    "postal_code": "postalcode",
    "country": "Country",
    "country_code": "CC",
    "country_geoname_id": GEONAME_ID,
    "country_is_eu": false,
    "continent": "North America",
    "continent_code": "NA",
    "continent_geoname_id": GEONAME_ID,
    "longitude": longitude,
    "latitude": latitude,
    "security": {
        "is_vpn": false
    },
    "timezone": {
        "name": "America/Timezone",
        "abbreviation": "ABBR",
        "gmt_offset": -5,
        "current_time": "15:52:08",
        "is_dst": true
    },
    "flag": {
        "emoji": "🇺🇸",
        "unicode": "U+1F1F2 U+1F1FD",
        "png": "https://static.abstractapi.com/country-flags/US_flag.png",
        "svg": "https://static.abstractapi.com/country-flags/US_flag.svg"
    },
    "currency": {
        "currency_name": "Dollar",
        "currency_code": "USD"
    },
    "connection": {
        "autonomous_system_number": NUMBER,
        "autonomous_system_organization": "System Org.",
        "connection_type": "Cellular",
        "isp_name": "Isp",
        "organization_name": "Org."
    }
}

Note: identifying information has been redacted.

4.3/5 stars (8 votes)

Get your free
IP Geolocation API
API
key now
Abstract's IP Geolocation API comes with libraries, code snippets, guides, and more.
get started for free

Related Articles

Get your free
API
IP Geolocation API
key now
4.8 from 1,863 votes
See why the best developers build on Abstract
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
No credit card required