Metadata-Version: 2.1
Name: fps_channels
Version: 0.3
Description-Content-Type: text/markdown
Requires-Dist: python-telegram-bot==13.9
Requires-Dist: pandas==1.3.5
Requires-Dist: dataframe-image==0.1.5
Requires-Dist: tenacity==8.2.3
Requires-Dist: lxml==4.9.2
Requires-Dist: openpyxl==3.1.1

# A package for convenient sending errors/messages

As for now fps_channels supports sending data through Telegram in formats such as .xlsx, .png, plain text.

## Example



```
class TelegramAlertChannel(TelegramChannel):
    SHOW_FILENAME = True
    HEADER = "️🆘️ Header text"

alert_channel = TelegramAlertChannel(
    bot_token="bot:token",
    chat_id=12345
)
```


