Metadata-Version: 2.1
Name: discord-sentry-reporting
Version: 2.0.3
Summary: A small compatibility library that provides functionality to report errors from discord.py to Sentry.
Home-page: https://github.com/RDIL/bluejay
Author: Reece Dunham
Author-email: me@rdil.rocks
License: MIT
Keywords: discord,sentry,error,reporting,compat
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: discord.py (>=1.0.0)
Requires-Dist: sentry-sdk

# Discord.py Sentry Reporting

This is a small compatibility library that provides functionality to report errors from Discord.py to Sentry.

## Usage

```python
from discord_sentry_reporting import use_sentry

use_sentry(
    discord_client_object,  # it is typically named client or bot
    dsn="your_dsn_here"
    # put in any sentry keyword arguments (**kwargs) here
)
```


