Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/banteg/telegram
- Owner: banteg
- License: mit
- Created: 2016-09-11T21:08:48.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-26T00:59:19.000Z (over 6 years ago)
- Last Synced: 2024-10-04T13:29:38.004Z (about 1 month ago)
- Topics: minimal, telegram, telegram-api, wrapper
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 19
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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 TelegramApit = TelegramApi('your bot token')
t.send_message(chat_id=123, text='hi') # note snake_case
```