C Library
PHP Module
Perl Module
Ruby Library
Python Library
Apache Module
Nginx Module
Node.js Module
Cocoa / Objective C Library
Pascal Library
D Library
Go Package
Erlang Module
Haskell Package
Debian Package
Lua Package
Kotlin Module
Scala Library
OpenResty Package
Splunk Add-on
Apache Kafka Transform
OCaml Module
Deno Module
R Package
.NET Component
Java Component
HTTP Module
ActiveX / COM DLL
IP2Location IP Geolocation Python Library
This IP Geolocation Python Library supports all IP2Location™ IP database products. It has been optimized for speed and memory utilization. Developers can use this API to query all IP2Location™ binary databases for IPv4 and IPv6 address to get geolocation data of that IP address.
- Unzip the package.
- Execute:
python setup.py build
- Execute:
python setup.py install
import IP2Location, os
'''
Cache the database into memory to accelerate lookup speed.
WARNING: Please make sure your system have sufficient RAM to use this feature.
'''
# database = IP2Location.IP2Location(os.path.join("data", "IPV6-COUNTRY.BIN"), "SHARED_MEMORY")
database = IP2Location.IP2Location(os.path.join("data", "IP-COUNTRY-REGION-CITY-LATITUDE-LONGITUDE-ZIPCODE-TIMEZONE-ISP-DOMAIN-NETSPEED-AREACODE-WEATHER-MOBILE-ELEVATION-USAGETYPE-ADDRESSTYPE-CATEGORY-DISTRICT-ASN-SAMPLE.BIN"))
rec = database.get_all("19.5.10.1")
print("Country Code : " + rec.country_short)
print("Country Name : " + rec.country_long)
print("Region Name : " + rec.region)
print("City Name : " + rec.city)
print("ISP Name : " + rec.isp)
print("Latitude : " + rec.latitude)
print("Longitude : " + rec.longitude)
print("Domain Name : " + rec.domain)
print("ZIP Code : " + rec.zipcode)
print("Time Zone : " + rec.timezone)
print("Net Speed : " + rec.netspeed)
print("Area Code : " + rec.idd_code)
print("IDD Code : " + rec.area_code)
print("Weather Station Code : " + rec.weather_code)
print("Weather Station Name : " + rec.weather_name)
print("MCC : " + rec.mcc)
print("MNC : " + rec.mnc)
print("Mobile Carrier : " + rec.mobile_brand)
print("Elevation : " + rec.elevation)
print("Usage Type : " + rec.usage_type)
print("Address Type : " + rec.address_type)
print("Category : " + rec.category)
print("District : " + rec.district)
print("ASN : " + rec.asn)
print("AS : " + rec.as_name)
Discover Your User Locations
Retrieve geolocation data for FREE now!