Module to notify unhandled error for beta running app
This module requires python 3.9+ (with pip installed) to run. To install, just simply execute:
python -m pip install git+$<link-to-this-repo>The module requires two environment variables:
TELEGRAM_ROOM=<value>
TELEGRAM_BOT_TOKEN=<value> # normal usage
from telelog import log
log('a message, stacktrace or whatever')
# or in a asynchronous context
from telelog import alog
await alog('a message, stacktrace or whatever')