Metadata-Version: 2.4
Name: guardrails-ai-secrets-present
Version: 0.1.0
Summary: Detects the secrets present in text by matching against common patterns for API keys and other sensitive information.
Author: Guardrails AI
License-Expression: MIT
Project-URL: Homepage, https://guardrailsai.com
Project-URL: Repository, https://github.com/guardrails-ai/guardrails-hub-monorepo/tree/main/secrets_present/py
Project-URL: Documentation, https://guardrails-ai.github.io/guardrails-hub-monorepo/autoapi/guardrails_ai/secrets_present/index.html
Requires-Python: <4,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: guardrails-ai>=0.4.0
Requires-Dist: detect-secrets>=1.4.0
Provides-Extra: dev
Requires-Dist: ruff; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: coverage>=7.6.12; extra == "dev"
Requires-Dist: pyright[nodejs]>=1.1.396; extra == "dev"
Dynamic: license-file

# guardrails-ai-secrets-present

Detects the secrets present in text by matching against common patterns for API keys and other sensitive information.

## Installation

```bash
pip install guardrails-ai-secrets-present
```

## Usage

```python
from guardrails import Guard
from guardrails_ai.secrets_present import SecretsPresent

guard = Guard().use(SecretsPresent)
```

## License

MIT — © Guardrails AI.
