Metadata-Version: 2.1
Name: grumpy-ai
Version: 1.0.0
Summary: Zero-config AI SRE teammate that aggressively complains about your crashes.
Home-page: https://github.com/tafadzwatazvitadza/grumpy-python
Author: Desicon Platform
Author-email: hello@desicon.ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests >=2.25.1

# Grumpy.ai Python SDK

Zero-config AI SRE teammate that aggressively complains about your crashes.

## Installation

```bash
pip install grumpy-ai
```

## Usage

Initialize the client as early as possible in your application (e.g., at the top of your `main.py` or `manage.py`).

```python
from grumpy_ai import GrumpyClient

GrumpyClient(
    api_key="grp_live_...",
    app_name="fastapi-backend",
    environment="production"
)

# That's it! Grumpy automatically hooks into sys.excepthook.
# Any unhandled exception will be intercepted, analyzed by AI, and sent to your Discord/Slack.
```
