Skip to main content

pyonyphe

CI PyPI Python

Python client and command line interface for ONYPHE, the Cyber Defense Search Engine.

  • Sync (Onyphe) and async (AsyncOnyphe) clients, both fully typed.
  • Covers APIv2: User, Search, Export, Summary, Simple, Simple Best, the Bulk variants, Discovery and Alert — plus a request() escape hatch for anything ONYPHE ships next.
  • pyonyphe CLI with table / JSON / NDJSON output.
  • Automatic pagination, retries with backoff, Retry-After support.

Install

The library on its own:

uv add pyonyphe

The pyonyphe command needs the cli extra, which pulls in Typer and Rich:

uv add 'pyonyphe[cli]'
uv run pyonyphe --help

Since 3.1.0 those two are no longer runtime dependencies, so importing the client no longer constrains rich in your own resolution.

Library

from pyonyphe import Onyphe

with Onyphe() as api:  # key read from ONYPHE_API_KEY
    page = api.search("category:datascan product:Nginx country:FR")
    print(page.total, "results")

    for hit in api.search_iter("domain:example.com", max_results=500):
        print(hit["ip"], hit.get("port"))

    for doc in api.export("category:vulnscan domain:example.com"):
        ...

Async, same surface:

import asyncio
from pyonyphe import AsyncOnyphe


async def main() -> None:
    async with AsyncOnyphe() as api:
        page = await api.search("protocol:rdp")
        async for hit in api.export("domain:example.com"):
            print(hit["ip"])


asyncio.run(main())

CLI

Needs uv add 'pyonyphe[cli]', or use the container image below.

export ONYPHE_API_KEY=...

pyonyphe user
pyonyphe search 'protocol:rdp country:FR' --size 20
pyonyphe search 'domain:example.com' --all --format ndjson -o results.ndjson
pyonyphe export 'category:vulnscan domain:example.com' -o export.ndjson
pyonyphe summary ip 8.8.8.8
pyonyphe simple whois 8.8.8.8 --best
pyonyphe resolve example.com
pyonyphe bulk simple datascan ips.txt -o out.ndjson
pyonyphe alert list

Configuration

The API key is resolved in this order:

  1. api_key= argument, or --api-key on the CLI
  2. the ONYPHE_API_KEY environment variable
  3. ~/.config/pyonyphe/config.toml
  4. ~/.onyphe.ini — the file used by the official ONYPHE CLI
# ~/.config/pyonyphe/config.toml
[onyphe]
api_key = "..."

Docker

The CLI is published as a container image on GHCR, built for linux/amd64 and linux/arm64:

docker run --rm -e ONYPHE_API_KEY ghcr.io/onyphe/pyonyphe:latest \
  search 'category:datascan product:Nginx country:FR' --size 5

Tags: latest and the semver ones (3, 3.0, 3.0.0) on each release, main and sha-<commit> on every push to the default branch.

The image runs as an unprivileged user and its working directory is /work, so mount there to read an asset list or write an export:

docker run --rm -e ONYPHE_API_KEY -v "$PWD:/work" ghcr.io/onyphe/pyonyphe:latest \
  bulk simple datascan ips.txt -o datascan.ndjson

MCP server

An optional MCP server exposes ONYPHE to an assistant:

uv add 'pyonyphe[mcp]'
ONYPHE_API_KEY=... pyonyphe-mcp

Four read-only tools — search, summary, resolve, user — with clamped page sizes and truncated fields, so a model cannot drain your credits or your context window. See docs/mcp.md.

Documentation

License

MIT — see LICENSE.

Download files

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

Source Distribution

pyonyphe-3.1.0.tar.gz (43.8 kB view details)

Uploaded Source

Built Distribution

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

pyonyphe-3.1.0-py3-none-any.whl (29.1 kB view details)

Uploaded Python 3

File details

Details for the file pyonyphe-3.1.0.tar.gz.

File metadata

  • Download URL: pyonyphe-3.1.0.tar.gz
  • Upload date:
  • Size: 43.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyonyphe-3.1.0.tar.gz
Algorithm Hash digest
SHA256 199fd077214f453a9d6bedd72764ecb0b1c2f9a10d75bdc86e90b0c42e54cda6
MD5 40ef153babfc38602a6e0d4bac40d181
BLAKE2b-256 11f5cf63bb7cd6ec4515486603d175ba59efe5033eab39aa78d8ba994ab3f9b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyonyphe-3.1.0.tar.gz:

Publisher: release.yml on onyphe/pyonyphe

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

File details

Details for the file pyonyphe-3.1.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for pyonyphe-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d915708bea030aac4b58508136db3bcdc95f834b7508c114869e43e7607cb431
MD5 9a3fb0bff35d1451f0f76b80a04ad5dd
BLAKE2b-256 3299960afa78b508d619feab5284b5f4d4f764737b4ff86d35f621070ccee0fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyonyphe-3.1.0-py3-none-any.whl:

Publisher: release.yml on onyphe/pyonyphe

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

Supported by

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