Registry / data / anomalo

anomalo

JSON →
library0.41.2pypypi✓ verified 84d ago

Python client library for the Anomalo API, enabling programmatic management of data quality checks, anomaly detection, and monitoring. Current version 0.41.2 supports Python 3.9+ and is actively maintained with regular releases.

pip install anomalo
INSTALL
IMPORT
SIG · ANOMALO
A
anomalo
datapythonv0.41.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Client
from anomalo import Client
from anomalo.client import Client
Common error: direct subpackage import is deprecated, use top-level import.

Initialize a client with an API key and list all checks.

from anomalo import Client api_key = os.environ.get('ANOMALO_API_KEY', '') client = Client(api_key=api_key, host='https://your-instance.anomalo.com') checks = client.list_checks() print(checks)
Debug
Known issues
breakingVersion 0.40.0 removed the deprecated `Client` class initialization without explicit `api_key` parameter. You must now provide `api_key` as a named argument.
fix
Update to `Client(api_key='your-key', host='...')` instead of positional or legacy calls.
affects: >=0.40.0
gotchaThe `host` parameter must include the protocol (https://) and no trailing slash. Omitting `https://` will cause connection errors.
fix
Always set host as 'https://your-instance.anomalo.com' (with protocol, no trailing slash).
affects: All
Errors
Common errors & fixes
ImportError: cannot import name 'Client' from 'anomalo' (unknown location)
Library not installed or wrong Python environment.
fix
Run `pip install anomalo` and ensure the correct virtual environment is active.
anomalo.exceptions.AuthenticationError: Invalid API key
API key is missing, empty, or incorrect.
fix
Verify the API key is set correctly: `client = Client(api_key='...')` or via environment variable `ANOMALO_API_KEY`.
Upgrade
Version history
0.41.2latest on PyPI · released Apr 30, 2026
Audit
Dependencies
requestsrequiredHTTP client for API calls
Agent activity
40 hits · last 30 days
node
32
OpenAI (training)
1
Resources
anomalo — pip install anomalo · libregistry