Metadata-Version: 2.4
Name: meshulash-guard
Version: 0.2.0
Summary: Python SDK for the Meshulash AI security engine
Author-email: Meshulash <dev@meshulash.ai>
License: Proprietary
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Requires-Python: >=3.10
Requires-Dist: pydantic<3,>=2.0
Requires-Dist: requests<3,>=2.28
Provides-Extra: dev
Requires-Dist: pytest-mock>=3.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# meshulash-guard

Python SDK for the Meshulash AI security engine.

Protect LLM applications from PII leakage, toxic content, jailbreaks, and cyber threats
with a single `pip install` and a few lines of Python.

```python
from meshulash_guard import Guard

guard = Guard(api_key="sk-xxx", tenant_id="your-tenant-id")
result = guard.scan_input(text, scanners=[pii_scanner])
```
