Python Client for Ipdata.co - a Free Ip Geolocation API
Project description
This repo provides a Python client for the ipdata.co Free Geolocation API.
Installation
Run
pip install ipdata
Examples
from ipdata import ipdata
ip = ipdata.ipdata()
data = ip.lookup('1.1.1.1')
if data['status']==200:
for key in data['response']:
print('#', key, ':', data['response'][key])
else:
print(data['response'])
# ip : 1.1.1.1
# city : Research
# region : Victoria
# country_name : Australia
# country_code : AU
# continent_name : Oceania
# continent_code : OC
# latitude : -37.7
# longitude : 145.1833
# asn :
# organisation :
# postal : 3095
# currency : AUD
# currency_symbol : $
# calling_code : 61
# flag : https://ipdata.co/flags/au.png
# time_zone : Australia/Melbourne
To get a specific field, do
country = ip.lookup('1.1.1.1')['response']['country_name']
# 'Australia'
Using API keys
from ipdata import ipdata
apikey = 'myapikey'
ip = ipdata.ipdata(apikey=apikey)
data = ip.lookup('1.1.1.1')
if data['status']==200:
for key in data['response']:
print('#', key, ':', data['response'][key])
else:
print(data['response'])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ipdata-2.5.tar.gz
(2.0 kB
view details)
File details
Details for the file ipdata-2.5.tar.gz.
File metadata
- Download URL: ipdata-2.5.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae23f212e9fbf7d3bb9dba553a3f283128640fd27dfc48158bba6ec4d8a52274
|
|
| MD5 |
4238b84d71d1b6f3fd763d9316f20494
|
|
| BLAKE2b-256 |
301ae187f4e7c9e6fcb4c6c692c88b293670ccee4802c3e861c8f43ea4030d10
|