Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/banteg/telegram

a very minimal telegram api wrapper
https://github.com/banteg/telegram

minimal telegram telegram-api wrapper

Last synced: 15 days ago
JSON representation

a very minimal telegram api wrapper

Awesome Lists containing this project

README

        

# telegram

a minimal [telegram api](https://core.telegram.org/bots/api) wrapper

## installation
```
pip install tgb
```

## usage
```python
from telegram import TelegramApi

t = TelegramApi('your bot token')
t.send_message(chat_id=123, text='hi') # note snake_case
```