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: 3 months ago
JSON representation
Asyncronous Sentry.io micro client for micropython
- Host: GitHub
- URL: https://github.com/devbis/micropython-aiosentry
- Owner: devbis
- License: mit
- Created: 2019-01-05T11:59:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-12T09:07:12.000Z (over 5 years ago)
- Last Synced: 2024-04-22T13:31:32.809Z (7 months ago)
- Topics: asyncio, micropython, micropython-aiosentry, sentry, sentry-client
- Language: Python
- Size: 3.91 KB
- Stars: 10
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-micropython - micropython-aiosentry - Asynchronous Sentry.io micro client for MicroPython. (Development / Debugging)
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
```