iplookupapi Python Client is the official Python Wrapper around the iplookupapi API.
Install from pip:
pip install iplookupapiInstall from code:
pip install git+https://github.com/everapihq/iplookupapi-python.gitAll iplookupapi API requests are made using the Client class. This class must be initialized with your API access key string. Where is my API access key?
In your Python application, import iplookupapi and pass authentication information to initialize it:
import iplookupapi
client = iplookupapi.Client('API_KEY')print(client.status())https://iplookupapi.com/docs/info
result = client.info()
# result = client.info('1.1.1.1', 'de')
print(result)Any feedback? Please feel free to contact our team.