A Python client for IPDetective API
Project description
IPDetective Client
IPDetective is an API that focuses on bot and non-human IP detection to quickly identify if an IP address comes from a datacenter, VPN or proxy. You can signup to the free API by simply signing in to access your API key. IPDetective tracks over 1000 ASNs and detects over 250 million IP addresses as non-human users from +100 different origins, ranging from data centers, botnets, proxies and vpns.
Features
- IP Bot Detection
- IP Geolocation
- IP ASN
Usage
import os
from ipdetective import IPDetective
def main():
api_key = os.getenv('IPDETECTIVE_API_KEY')
ip_client = IPDetective(api_key)
# Get information about a singular IP address
ip_info = ip_client.GetIpInfo('8.8.8.8')
print(ip_info)
# {'ip': '8.8.8.8', 'bot': True, 'type': 'bot', 'asn': 15169, 'asn_description': 'GOOGLE', 'country_code': 'US', 'country_name': 'United States of America'}
# Get information about build IP addresses
bulk_ip_info = ip_client.GetBulkIpInfo(['8.8.8.8', '1.1.1.1'])
print(bulk_ip_info)
# [{'ip': '1.1.1.1', 'bot': True, 'type': 'bot', 'asn': 13335, 'asn_description': 'CLOUDFLARENET', 'country_code': 'US', 'country_name': 'United States of America'}, {'ip': '8.8.8.8', 'bot': True, 'type': 'bot', 'asn': 15169, 'asn_description': 'GOOGLE', 'country_code': 'US', 'country_name': 'United States of America'}]
if __name__ == "__main__":
main()
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ipdetective-1.0.2.tar.gz.
File metadata
- Download URL: ipdetective-1.0.2.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
521330aef0f7b732403ba9bb6ea698811aed82147d483f017f1e14e0bb0e7d27
|
|
| MD5 |
43d6f1434a992865249336e1a1db313a
|
|
| BLAKE2b-256 |
8c15955740e93d6a6079c2bb01c81134e3cc0f3cae85f7cdc319a2fc1b6e627b
|
File details
Details for the file ipdetective-1.0.2-py3-none-any.whl.
File metadata
- Download URL: ipdetective-1.0.2-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16246185bdc8ea81a85fd684fc55f5c35a2ad83c92a27bd8d103d5b2d6111bd5
|
|
| MD5 |
80de47a32d38cb49984548eed1116f7f
|
|
| BLAKE2b-256 |
d18e414565ad72a12146f5858ec88576884b1b8488faee977af3de0892dbe5d8
|