Ipbase Python Client is the official Python Wrapper around the Ipbase API.
Install from pip:
pip install ipbaseInstall from code:
pip install git+https://github.com/everapihq/ipbase-python.gitAll ipbase 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 ipbase and pass authentication information to initialize it:
import ipbase
client = ipbase.Client('API_KEY')print(client.status())result = client.info()
# result = client.info('1.1.1.1', 'de')
print(result)Any feedback? Please feel free to contact our team.