Python SDK for the Sidearm API — protect media from AI training, detect AI content, and search for stolen work
Project description
sidearmdrm
Python SDK for the Sidearm API. Protect media from AI training, detect AI content, search for stolen work.
Install
pip install sidearmdrm
Quick Start
from sidearm import Sidearm
client = Sidearm(api_key="sk_live_...")
job = client.protect(media_url="https://example.com/art.png", level="maximum")
result = job.wait()
print(result)
Protection
# Preset level (auto-selects algorithms)
job = client.protect(media_url="https://...", level="standard", tags=["portfolio"])
# Run specific algorithms by name
job = client.run(algorithms=["nightshade", "glaze", "hmark"], media_url="https://...")
Job Polling
Async endpoints return a Job handle with built-in polling:
# Wait until done (default 120s timeout, 2s interval)
result = job.wait(timeout=120, interval=2)
# Manual poll
status = job.poll()
# Resume from a previous job ID
resumed = client.jobs.handle("job-uuid")
resumed.wait()
Algorithms
all_algos = client.algorithms.list()
audio = client.algorithms.list(media_type="audio")
open_algos = client.algorithms.list(category="open")
Detection
# AI content detection (async)
ai_job = client.detect.ai(media_url="https://...")
ai_result = ai_job.wait()
# Fingerprint detection (sync)
matches = client.detect.fingerprint(media_url="https://...", tier="perceptual")
# Membership inference
mem_job = client.detect.membership(
content_ids=["uuid-1", "uuid-2"],
suspect_model="stable-diffusion-xl",
method="combined",
)
mem_result = mem_job.wait()
Search
results = client.search.run(media_url="https://...", type="perceptual", limit=10)
history = client.search.list(limit=20)
Media Management
media = client.media.register(media_url="https://...", mode="basic")
library = client.media.list(limit=50)
asset = client.media.get("uuid")
client.media.update("uuid", original_media_url="https://...")
client.media.delete("uuid")
Rights and Billing
rights = client.rights.get("media-uuid")
billing = client.billing.get("account-uuid", start_date="2026-01-01")
Error Handling
from sidearm import Sidearm, SidearmError
try:
client.protect(media_url="...")
except SidearmError as e:
print(e) # Human-readable message
print(e.status) # HTTP status code
print(e.body) # Raw response body
Context Manager
with Sidearm(api_key="sk_live_...") as client:
job = client.protect(media_url="https://...")
result = job.wait()
Requirements
- Python 3.9+
- Single dependency: httpx
- Full type annotations (py.typed)
License
MIT
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
sidearmdrm-0.2.0.tar.gz
(8.0 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 sidearmdrm-0.2.0.tar.gz.
File metadata
- Download URL: sidearmdrm-0.2.0.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e0031406416102742997d2d5b50f746fd99db9ac56b3b250a7268b8e659ae22
|
|
| MD5 |
955174a1a524047df8d49c679f1e3e12
|
|
| BLAKE2b-256 |
660a19a4926b5c2c5f697e77537f25c86463afcd25b96ad6b9e747bf578dcc4d
|
File details
Details for the file sidearmdrm-0.2.0-py3-none-any.whl.
File metadata
- Download URL: sidearmdrm-0.2.0-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fc175001896bcc9bc8192ed23608a927b5a2c933f4bf34d4fe41cf1993d9059
|
|
| MD5 |
85be91dc98c4db388ebc517a19c8c4e5
|
|
| BLAKE2b-256 |
7ab434c2cefda0b65a3002c76e4cf93faf583d2d83c24fce3fd58ed57ffa5ff6
|