Synthient API bindings.
Project description
synthientpy
A strongly typed Python client for Synthient. Supports asynchronous and synchronous requests to the Synthient API.
Installation
MacOS/Linux
pip3 install synthientpy
Windows
pip install synthientpy
Usage
Check synthientpy/models for the available fields in the response object.
Client and AsyncClient have the following methods:
class Client:
def __init__(
self,
api_key: str,
default_timeout: int = DEFAULT_TIMEOUT,
proxy: Optional[str] = None,
) -> None: ...
def lookup_ip(self, ip_address: str) -> IPLookupResponse: ...
def credits(self) -> Dict[str, Any]: ...
def anonymizers(self, *, provider=None, type=None, last_observed=None, format=FeedFormat.CSV, country_code=None, full=False, order=SortOrder.DESC) -> bytes: ...
def blacklist(self, *, provider=None, type=None, format=FeedFormat.CSV, order=SortOrder.DESC) -> bytes: ...
Synchronous Usage
import synthientpy as synthient
client = synthient.Client(api_key="sk_...")
ip_info = client.lookup_ip("8.8.8.8")
print(ip_info.ip_data.ip_risk)
print(ip_info.location)
print(ip_info.network)
Asynchronous Usage
import asyncio
import synthientpy as synthient
async def main():
client = synthient.AsyncClient(api_key="sk_...")
ip_info = await client.lookup_ip("8.8.8.8")
print(ip_info.ip_data.ip_risk)
asyncio.run(main())
Data Feeds
Bulk data is available for clients who want to perform large-scale analysis or integrate Synthient data into their own systems. Feeds are returned as raw bytes in JSONL, CSV, or TEXT format.
import synthientpy as synthient
client = synthient.Client(api_key="sk_...")
anonymizers = client.anonymizers(
provider="BIRDPROXIES",
type="RESIDENTIAL_PROXY",
last_observed="7D",
format=synthient.FeedFormat.CSV,
country_code="US",
)
blacklist = client.blacklist(
provider="NORDVPN",
type="COMMERCIAL_VPN",
format=synthient.FeedFormat.CSV,
)
Models
Full documentation of the fields and their types can be found in the Synthient API documentation. You can also find all the types in the synthientpy.models module.
Issues
For any issues or feature requests, please open an issue on the GitHub repository
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
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 synthientpy-0.3.0.tar.gz.
File metadata
- Download URL: synthientpy-0.3.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
092cf1fa90064bb1064733aa64448b42be6a9e38eb678dff5e0b51bdc2c032d1
|
|
| MD5 |
a19c0980c068a58908268a983b36bd45
|
|
| BLAKE2b-256 |
cb36cf0c067722ccc0547b88b630224e5b78f5cc510bf0a8d31585e629c3f20d
|
File details
Details for the file synthientpy-0.3.0-py3-none-any.whl.
File metadata
- Download URL: synthientpy-0.3.0-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24ae35430d87b00c2413a4aecf1792d3a6e802f8d75487af0ca22fb76ded23ef
|
|
| MD5 |
d53714896d93e6888ccb96cb1106a0c1
|
|
| BLAKE2b-256 |
b00465aaf8734029b180186f71928f699fdfac5f650b81f752bc1a44bd98b8d9
|