Metadata-Version: 2.4
Name: antops
Version: 0.2.1
Summary: Official AntOps Python SDK and CLI
Author: Artificial Works
License-Expression: Apache-2.0
Project-URL: Homepage, https://antops.dev
Project-URL: Documentation, https://api.antops.dev/docs
Project-URL: Repository, https://github.com/Artificial-Works/antops-developer
Project-URL: Issues, https://github.com/Artificial-Works/antops-developer/issues
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx<1,>=0.27
Provides-Extra: dev
Requires-Dist: pytest>=8.3; extra == "dev"
Requires-Dist: ruff>=0.6; extra == "dev"
Dynamic: license-file

# AntOps Python SDK

```python
from antops import AntOpsClient

client = AntOpsClient.from_environment()
profile = client.company.lookup("GB", "00000006")
assessment = client.change_risk.analyze([
    {"path": "compose.yaml", "content": "services:\\n  app:\\n    privileged: true"}
])
```

The client defaults to `https://api.antops.dev`, uses `ANTOPS_API_KEY`, and has a 15-second timeout.
Set `ANTOPS_BASE_URL` only for a compatible environment.
