python-telegram-handler
python-telegram-handler copied to clipboard
Asynchronous logging
Looking at the code seems that http requests to telegram api are synchronous, meaning that in case of network latency or errors it will lag the execution.
It would be great to spawn requests on an executor or something similar to avoid blocking the execution while using this handler.
Thanks!