tglogger is a logger handler and formatter for Telegram bots.


Keywords
telegram, messaging, communication, logging, bot, python, utility
License
Apache-2.0
Install
pip install tglogger==0.1.1a3

Documentation

tglogger

PyPI - Version PyPI - Status PyPI - License PyPI - Python PyPI - Django Downloads - Month

tglogger contains utilities to build and redirect logs to Telegram chat via a bot.

  • It has a formatter for beautiful log messages in Telegram.
  • It tends to tag common logs so that you can easily filter out related log messages.
  • You can send logs to individuals, channels or groups.
  • It works with Django (See badges for supported versions).
Build Coverage
master Linux - Master Coverage - Master
development Linux - Development Coverage - Development

Installing

Install via pip:

pip install tglogger

Example

tglogger contains a formatter which formats log records for Telegram chats and a handler which sends log records to a Telegram chat.

Assuming you have a logger instance:

logger = logging.getLogger(__name__)

You need to have an instance of TelegramHandler and TelegramFormatter.

from tglogger import TelegramHandler, TelegramFormatter

handler = TelegramHandler(bot_token="foo", receiver="bar")
# you can also set TELEGRAM_BOT_TOKEN and TELEGRAM_RECEIVER
# environment variables so as not to pass these on initialization

formatter = TelegramFormatter() # initialize formatter
handler.setFormatter(formatter)  # inject formatter into handler

logger.addHandler(handler)  # inject handler into logger

And now your log records that has level above ERROR will be sent to the chat you have defined with receiver by the bot that you have defined by bot_token.

logger.error("foo")  # you will receive a message by your bot

Documentation

Documentation has more information about how to use tglogger. Refer to the documentation.