security.dev Python SDK
Project description
security.dev Python SDK
A modern Python client for the security.dev API, built using httpx and pydantic. Supports both synchronous (default) and asynchronous usage.
Features
- Synchronous and Asynchronous interfaces.
- Data validation using
pydantic. - Simple and intuitive interface.
- Type-hinted.
Installation
Install using pip (or any other manager):
pip install securitydev
Requirements
- Python 3.8+
- A security.dev API key, available from security.dev.
Quick Examples
Synchronous Usage
import os
from securitydev import SecurityClient
key = os.getenv("SECURITYDEV_KEY")
with SecurityClient(key=key) as client:
reputation = client.ip_intel.reputation("8.8.8.8")
print(f"8.8.8.8 - Is Abuser: {reputation.is_abuser}")
You don't necessarily need to use the context manager.
import os
from securitydev import SecurityClient
key = os.getenv("SECURITYDEV_KEY")
client = SecurityClient(key=key)
ip = "1.1.1.1"
rep = client.ip_intel.reputation(ip)
if rep.is_tor_exit:
print(f"{ip} is a Tor exit.")
Asynchronous Usage
import os
import asyncio
from securitydev import AsyncSecurityClient
async def main():
async with AsyncSecurityClient(key=os.getenv("SECURITYDEV_KEY")) as client:
geoip = await client.ip_intel.geolocate("1.1.1.1")
print(f"1.1.1.1 - Country: {geoip.country.name}")
asyncio.run(main())
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
securitydev-1.0.6.tar.gz
(22.2 kB
view details)
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 securitydev-1.0.6.tar.gz.
File metadata
- Download URL: securitydev-1.0.6.tar.gz
- Upload date:
- Size: 22.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
258fd3923a4ddbb0dca05e952a7b848a2080767c122a3668796246d44e568e4d
|
|
| MD5 |
a80e28d16d1297fc6aca82e6d8e908dd
|
|
| BLAKE2b-256 |
764836be7f994ab24cd4454c28414d6e81b1431a97bddf1502e5d42f1ca79e09
|
File details
Details for the file securitydev-1.0.6-py3-none-any.whl.
File metadata
- Download URL: securitydev-1.0.6-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6abb56872826021f910b864a8f2922d8bce875bba98d3028cf1b1d0002eb4e96
|
|
| MD5 |
6b31f6aaca18bf265475aac572b4e6c1
|
|
| BLAKE2b-256 |
196fe9a659553fc216a1cb32052cecd6ce3350239eaf79442cd511db128868f1
|