Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Guard Logo
Guard

A Python client for seamlessly integrating visual safety filters into your applications

Release License: Apache 2.0 PRs Welcome

Features

🛡️ Multi-Layered Content Moderation: Automatically detects AI-generated, violent, and explicit content in images and videos.

🔄️ Two Engines, One Result Shape: Use the cloud API for maximum accuracy, or the optional on-device engine to build and test locally without an API key. Both return the exact same strictly typed models.

⚡ Sync & Async Support: Natively supports both synchronous operations and async/await out of the box, making it a perfect fit for high-performance frameworks like FastAPI.

🛠️ Comprehensive API Bindings: Typed bindings for the entire API including spaces, activities, tasks, predictors, runners, shares, and reactions. We also include token estimation, so you can price a job before you spend on it.

Installation

You can install the client in two ways, depending on whether you want to rely purely on the cloud API or include the local fallback engine.

Cloud-Only (Standard)

Installs the lightweight client. All media detection is routed to the Elhio Cloud API. This version is entirely Apache 2.0 licensed.

pip install guard-client

Cloud + Local (Hybrid)

Installs the client along with the guard-local-detector engine. This allows you to process local file paths directly on your hardware with zero network latency. Note: The local engine dependency is licensed under the AGPL-3.0.

pip install "guard-client[local]"

Quick Start

The analyze() method runs the entire detection lifecycle for you. It creates an activity, uploads the media, confirms the upload, polls until processing finishes, and returns the result.

You will need an API key and a space to create the activity in. You can create a new access token in the Elhio dashboard (under Settings > Account Settings > Access Tokens). If you do not know your space ID yet, you can ask the API for it. The spaces.list() method returns every space the key can see.

from guard_client import GuardClient

with GuardClient(api_key="your_api_key_here") as client:
    # 1. Get an available space
    space = client.spaces.list()[0]

    # 2. Analyze the media (creates activity, uploads, and polls for results)
    result = client.analyze("photo.jpg", space_id=space.id)

    # 3. Print the detection results
    for item in result.results:
        print(f"{item.label}: {item.score}/100")

# AI-Generated: 87/100
# Violence: 2/100
# Explicit: 1/100

Both values also resolve from the environment, so the common case needs no arguments at all:

# With GUARD_API_KEY and GUARD_SPACE_ID set (environment or .env)
with GuardClient() as client:
    result = client.analyze("photo.jpg")

The analyze() method accepts a file path, raw bytes, or an open binary file object. The media type is detected automatically from the filename or the file's magic bytes. You can pass media_type= to skip this automatic detection.

Local Detection

With the [local] extra installed, you can pass engine="local" to run entirely on-device. This requires no network calls, no API key, and no space ID. Results use the exact same DetectionResult type as the cloud API, so the code reading them does not need to change.

Local detection is opt-in and never automatic. The engine you get is the engine you explicitly ask for, regardless of which extras happen to be installed.

from guard_client import GuardClient

with GuardClient(engine="local") as client:
    # 1. Analyze the media
    result = client.analyze("/local/path/to/video.mp4")
    
    # 2. Print the detection results
    for item in result.results:
        print(f"{item.label}: {item.score}/100")

# AI-Generated: 90/100
# Violence: 2/100
# Explicit: 1/100

Two fields easily tell the engines apart. The result.activity_id is None because a local run creates nothing server-side, meaning there is nothing to share or react to. The result.detected field carries the engine's own per-category threshold verdict, which the cloud API does not report. Reading it means you are opting into extra detail, not into a different data shape.

Development

This project uses uv for package and environment management. A single uv sync creates the .venv, reads uv.lock, and installs everything exactly as it was locked. The test suite is fully mocked, so there is no API key to obtain and no network access at any point.

# set up the environment
uv sync

# run tests
uv run pytest

# build for production
uv build

The Contributing Guide covers the rest: linting and type checking, the documentation build, working against the optional local engine and its shared contract suite, and testing end-to-end against a live API.

Contributing

We welcome contributions! Please note that all contributors must sign our automated CLA. Read more in our Contributing Guide.

License

This repository and its corresponding PyPI package are licensed under the Apache v2.0 (Apache-2.0) - see the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

guard_client-0.0.1rc1.tar.gz (258.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

guard_client-0.0.1rc1-py3-none-any.whl (90.8 kB view details)

Uploaded Python 3

File details

Details for the file guard_client-0.0.1rc1.tar.gz.

File metadata

  • Download URL: guard_client-0.0.1rc1.tar.gz
  • Upload date:
  • Size: 258.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for guard_client-0.0.1rc1.tar.gz
Algorithm Hash digest
SHA256 1f38c5a38caad66fc5d6b9d155dbee7a8867fb7c45dd48f91063838125e46cd2
MD5 566b50d88cc0c2ab48de8f8bbc3fed44
BLAKE2b-256 b4e9f13832d8d392da5c28361b3381615c2dd7eb51641f6219da3ee2e27b66cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for guard_client-0.0.1rc1.tar.gz:

Publisher: release.yml on elhio/guard-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file guard_client-0.0.1rc1-py3-none-any.whl.

File metadata

  • Download URL: guard_client-0.0.1rc1-py3-none-any.whl
  • Upload date:
  • Size: 90.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for guard_client-0.0.1rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 94d7c6b1eedeac9553e55cf2b4063bf17b7d1f9b6db7ddb50714462cbb156e3a
MD5 96922e8254507bd8b6b3fa11baaa9ae2
BLAKE2b-256 9e72f6b8e8c8a98a2f6a692b02d27bbad52a19b6b1810a9e214697eeb342385d

See more details on using hashes here.

Provenance

The following attestation bundles were made for guard_client-0.0.1rc1-py3-none-any.whl:

Publisher: release.yml on elhio/guard-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.0.1

2 files

This release

0.0.1rc1 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page