Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/devbis/micropython-aiosentry

Asyncronous Sentry.io micro client for micropython
https://github.com/devbis/micropython-aiosentry

asyncio micropython micropython-aiosentry sentry sentry-client

Last synced: 2 months ago
JSON representation

Asyncronous Sentry.io micro client for micropython

Lists

README

        

# micropython-aiosentry

Here is a class for sending an exception with stacktrace from
your micropython instance to Sentry.

```
client = SentryClient(SENTRY_ID, SENTRY_KEY)

try:
x = 1/0
except Exception as e:
await client.send_exception(e)
raise
```