Asynchronous Telegram Bot API
Project description
Asynchronous Telegram Bot
This project allows you to create asynchrounous Telegram Bots using Python 3.
At the moment the API is sparse, feel free to add more methods via Pull Requests or submit Issues.
Getting Started
-
Get the source using
git
git clone https://github.com/naim94a/atbot.git
-
Install using
pip
pip install atbot
Example
import os
import asyncio
from atbot import TelegramBot, TelegramMessage, ChatAction
API_KEY = os.getenv('API_KEY')
async def handle_message(bot, msg):
if msg.text == '/start':
await bot.send_chat_action(msg.chat.id, ChatAction.TYPING)
await asyncio.sleep(0.2)
await bot.send_message(msg.chat.id, 'Hello, {0}!'.format(msg.sender.first_name))
async def my_bot():
bot = TelegramBot(API_KEY)
while True:
updates = await bot.get_updates()
for update in updates:
obj = update.get_obj()
if isinstance(obj, TelegramMessage):
await handle_message(bot, obj)
asyncio.run(my_bot())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
atbot-1.0.0.tar.gz
(3.8 kB
view details)
File details
Details for the file atbot-1.0.0.tar.gz
.
File metadata
- Download URL: atbot-1.0.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4878551fea15038b6f2d8cc3eeafd68a85d25b4e681102d4f27f7f9c519688ae |
|
MD5 | 21ba70d67a7f4feb520f4295d3db6d8e |
|
BLAKE2b-256 | 00b59002a7dfc5ead8c1c7678d6ad1f80bf2bc7e090369dae03b958efe027d15 |