Metadata-Version: 2.4
Name: fastapi_guard_agent
Version: 1.2.0
Summary: Deprecated alias — the package has been renamed to guard-agent. Installing fastapi-guard-agent will transitively install guard-agent.
Project-URL: Homepage, https://guard-core.com
Project-URL: Renamed To, https://pypi.org/project/guard-agent/
Project-URL: Repository, https://github.com/rennf93/guard-agent
Project-URL: Cloud Dashboard, https://app.guard-core.com
Project-URL: Live Playground, https://playground.guard-core.com
Author-email: Renzo Franceschini <rennf93@users.noreply.github.com>
License: MIT
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Security
Classifier: Topic :: System :: Monitoring
Requires-Python: <3.15,>=3.10
Requires-Dist: guard-agent<3.0.0,>=2.0.0
Description-Content-Type: text/markdown

# fastapi-guard-agent (deprecated alias)

> **This package has been renamed to [`guard-agent`](https://pypi.org/project/guard-agent/).**

As of `guard-agent` 2.0.0, the telemetry agent previously distributed under the name `fastapi-guard-agent` has been repositioned as a framework-agnostic agent serving `fastapi-guard`, `flaskapi-guard`, `djangoapi-guard`, and `tornadoapi-guard`.

This PyPI entry (`fastapi-guard-agent==1.2.0`) is a meta-package: installing it transitively installs `guard-agent>=2.0.0,<3.0.0`. It exists so that existing `pip install fastapi-guard-agent` commands in scripts, Dockerfiles, and lockfiles continue to resolve to the renamed distribution.

## Migration

The Python import path has **not** changed:

```python
from guard_agent import GuardAgentHandler, AgentConfig  # still works
```

Only the install command needs updating at your leisure:

```bash
# Old (still works via this meta-package)
pip install fastapi-guard-agent

# Preferred going forward
pip install guard-agent
```

## Links

- **Product site:** https://guard-core.com
- **Dashboard:** https://app.guard-core.com
- **Playground:** https://playground.guard-core.com
- **New package on PyPI:** https://pypi.org/project/guard-agent/
- **Repository:** https://github.com/rennf93/guard-agent
- **Documentation:** https://rennf93.github.io/guard-agent/
- **CHANGELOG (v2.0.0 rename notes):** https://github.com/rennf93/guard-agent/blob/master/CHANGELOG.md
