Asynchronous aiohttp based client for https://ip-api.com
Project description
aioipapi
Asynchronous asyncio/aiohttp based client for https://ip-api.com IP geolocation API.
ip-api.com is a fast, accurate, reliable API service for IP geolocation, free for non-commercial use.
aioipapi package provides asynchronous API to use ip-api.com service in free and pro. The package features:
- Support JSON API endpoint
- Support Batch JSON API endpoint
- Access to pro service with API key
- Free API rate limits control
- Customizable retrying when networking problems
You must not use aioipapi package for commercial purposes without API key.
Installing
Use pip for installing:
pip install -U aioipapi
Usage Examples
All examples are provided for Python 3.7 and above.
Use location
coroutine to locate your own IP:
import asyncio
from aioipapi import location
print(asyncio.run(location()))
{'status': 'success', 'country': 'United States', 'countryCode': 'US', 'region': 'CA', 'regionName': 'California', 'city': 'Santa Clara', 'zip': '95051', 'lat': 37.3417, 'lon': -121.9753, 'timezone': 'America/Los_Angeles', 'isp': 'DigitalOcean, LLC', 'org': 'Digital Ocean', 'as': 'AS14061 DigitalOcean, LLC', 'query': 'XXX.XX.XXX.XXX'}
Use location
coroutine to locate a domain name:
print(asyncio.run(location('github.com')))
{'status': 'success', 'country': 'Netherlands', 'countryCode': 'NL', 'region': 'NH', 'regionName': 'North Holland', 'city': 'Amsterdam', 'zip': '1012', 'lat': 52.3667, 'lon': 4.89454, 'timezone': 'Europe/Amsterdam', 'isp': 'GitHub, Inc.', 'org': 'GitHub, Inc.', 'as': 'AS36459 GitHub, Inc.', 'query': '140.82.118.3'}
A domain location is supported only in JSON endpoint. Currently, batch JSON endpoint does not support domain names as query. In other words, you cannot locate a list of domain names per time.
Use location
coroutine to locate an IP with cusomized result fields and language:
print(asyncio.run(location('8.8.8.8', fields=['continent', 'region', 'country'], lang='de')))
{'status': 'success', 'continent': 'Nordamerika', 'country': 'Vereinigte Staaten', 'region': 'VA', 'query': '8.8.8.8'}
Use location
coroutine to locate a list of IPs:
print(asyncio.run(location(['1.0.0.1', '1.1.1.1', '8.8.4.4', '8.8.8.8'], fields=['lat', 'lon', 'org'])))
[
{'status': 'success', 'lat': -27.4766, 'lon': 153.0166, 'org': 'APNIC and Cloudflare DNS Resolver project', 'query': '1.0.0.1'},
{'status': 'success', 'lat': -27.4766, 'lon': 153.0166, 'org': 'APNIC and Cloudflare DNS Resolver project', 'query': '1.1.1.1'},
{'status': 'success', 'lat': 39.03, 'lon': -77.5, 'org': 'Google Public DNS', 'query': '8.8.4.4'},
{'status': 'success', 'lat': 39.03, 'lon': -77.5, 'org': 'Google Public DNS', 'query': '8.8.8.8'}
]
You can customize the result fields and lang for each IP in the query list:
ips = [
'77.88.55.66',
{'query': '1.1.1.1', 'fields': ['lat', 'lon', 'country'], 'lang': 'de'},
{'query': '8.8.8.8', 'fields': ['continent', 'country'], 'lang': 'ru'},
]
print(asyncio.run(location(ips, fields=['region', 'isp', 'org'])))
[
{'status': 'success', 'region': 'MOW', 'isp': 'Yandex LLC', 'org': 'Yandex enterprise network', 'query': '77.88.55.66'},
{'status': 'success', 'country': 'Australien', 'lat': -27.4766, 'lon': 153.0166, 'query': '1.1.1.1'},
{'status': 'success', 'continent': 'Северная Америка', 'country': 'США', 'query': '8.8.8.8'}
]
In these cases the package uses Batch JSON API endpoint.
Use location_stream
async generator to locate IPs from an iterable or async iterable:
import asyncio
from aioipapi import location_stream
async def locate():
async for res in location_stream(['1.0.0.1', '1.1.1.1', '8.8.4.4', '8.8.8.8']):
print(res)
asyncio.run(locate())
location_stream
also supports fields
and lang
options.
location_stream
always uses Batch JSON API endpoint.
Use IpApiClient
class:
import asyncio
from aioipapi import IpApiClient
async def locate():
async with IpApiClient() as client:
print(await client.location())
asyncio.run(locate())
IpApiClient
provides location
and location_stream
methods similar to the corresponding non-member coroutines.
Use IpApiClient
class with existing aiohttp.ClientSession
instead of client own session:
import asyncio
import aiohttp
from aioipapi import IpApiClient
async def locate():
async with aiohttp.ClientSession() as session:
async with IpApiClient(session=session) as client:
print(await client.location())
asyncio.run(locate())
Usage of existing session also supported in location
and location_stream
non-member coroutines.
If you want to use unlimited pro ip-api service you can use your API key in location
, location_stream
functions and IpApiClient
:
async with IpApiClient(key='your-api-key') as client:
...
When API key is set, the package always uses HTTPS for connection with ip-api service.
Free API Rate Limit Control
ip-api service has rate limits in free API (without key). Currently, there are 45 requests per minute for JSON endpoint and 15 requests per minute for Batch JSON endpoint.
The package controls the rate limits using X-Rl
and X-Ttl
response headers.
In other words, you are unlikely to get 429 HTTP error when using free API.
When API key is being used, the rate limits are not being checked, because pro API is theoretically unlimited.
Let's locate a lot of IPs for example:
import asyncio
import sys
import logging
logging.basicConfig(
format='%(relativeCreated)d [%(levelname)s] %(message)s',
level=logging.DEBUG,
stream=sys.stderr,
)
from aioipapi import location
asyncio.run(location(['8.8.8.8'] * 2000))
798 [DEBUG] BATCH API rate limit: rl=14, ttl=60
900 [DEBUG] BATCH API rate limit: rl=13, ttl=59
1001 [DEBUG] BATCH API rate limit: rl=12, ttl=59
1103 [DEBUG] BATCH API rate limit: rl=11, ttl=59
1247 [DEBUG] BATCH API rate limit: rl=10, ttl=59
1391 [DEBUG] BATCH API rate limit: rl=9, ttl=59
1493 [DEBUG] BATCH API rate limit: rl=8, ttl=59
1595 [DEBUG] BATCH API rate limit: rl=7, ttl=59
1698 [DEBUG] BATCH API rate limit: rl=6, ttl=59
1809 [DEBUG] BATCH API rate limit: rl=5, ttl=58
1910 [DEBUG] BATCH API rate limit: rl=4, ttl=58
2015 [DEBUG] BATCH API rate limit: rl=3, ttl=58
2116 [DEBUG] BATCH API rate limit: rl=2, ttl=58
2216 [DEBUG] BATCH API rate limit: rl=1, ttl=58
2315 [DEBUG] BATCH API rate limit: rl=0, ttl=58
2367 [WARNING] API rate limit is reached. Waiting for 61 seconds by rate limit...
63464 [DEBUG] BATCH API rate limit: rl=14, ttl=60
63605 [DEBUG] BATCH API rate limit: rl=13, ttl=59
63695 [DEBUG] BATCH API rate limit: rl=12, ttl=59
63790 [DEBUG] BATCH API rate limit: rl=11, ttl=59
63894 [DEBUG] BATCH API rate limit: rl=10, ttl=59
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aioipapi-0.1.1.tar.gz
.
File metadata
- Download URL: aioipapi-0.1.1.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.2 CPython/3.7.6 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97186f56d0cad80dd38c0c1b4a799ed58a52dd735decd4c9c10e38d7e6bcaa72 |
|
MD5 | e9999e6f5ed9b721fd5b4f548b478e81 |
|
BLAKE2b-256 | 7c77e0c0d5ac5bbb8ba0e4a1ff02f1da3447c32c043cbb87d68fcef8be0b18d1 |
Provenance
File details
Details for the file aioipapi-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: aioipapi-0.1.1-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.2 CPython/3.7.6 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 139230cb9a70c07036b3edfb7c842d7b83bb377e76befa00406925e9fea59571 |
|
MD5 | d401f321d55555a1b2e6f3072266bec8 |
|
BLAKE2b-256 | 822e7b62a675edcb86041a115a65b2b9cd9bbebed56c2a5fc0e59513c5f0f770 |