Async-first fork of pyTelegramBotApi
Project description
telebot
Async-first fork of pyTelegramBotApi library wrapping the Telegram Bot API.
Supported Bot API version: 6.0!
See upstream project docs and README
Manually merged changes up to version 4.10.0
Usage
Install with
pip install telebot-against-war
Basic usage
import asyncio
from telebot import AsyncTeleBot, types
async def minimal_example():
bot = AsyncTeleBot("TOKEN")
@bot.message_handler(commands=["start", "help"])
async def receive_cmd(m: types.Message):
await bot.send_message(m.from_user.id, "Welcome!")
@bot.message_handler() # catch-all handler
def receive_message(m: types.Message):
await bot.reply_to(m, m.text)
await bot.infinity_polling(interval=1)
asyncio.run(minimal_example())
Development
The project uses Poetry to manage dependencies, build and publish the package.
Install as described here and make sure to update
to the latest 1.2.x
version:
poetry self update 1.2.0b1
Installing and configuring locally
poetry install
poetry run pre-commit install
Running tests and linters
poetry shell
pytest tests -vv
mypy telebot
black .
isort .
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
telebot_against_war-0.7.4.tar.gz
(94.1 kB
view details)
Built Distribution
File details
Details for the file telebot_against_war-0.7.4.tar.gz
.
File metadata
- Download URL: telebot_against_war-0.7.4.tar.gz
- Upload date:
- Size: 94.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f979e45f640a271ba256909b986bfd1968dd37bfcbb87d90f500eccec8cac13 |
|
MD5 | 978d42fa245f30ec33a9f3713abc3c92 |
|
BLAKE2b-256 | 32cad63633939b4c8b54193e46446939bd0d73ce49b86de5d70af4630b390c9b |
File details
Details for the file telebot_against_war-0.7.4-py3-none-any.whl
.
File metadata
- Download URL: telebot_against_war-0.7.4-py3-none-any.whl
- Upload date:
- Size: 100.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b8e463e9dbc8e0bfea22fca494ceb881fa1ea36ca7ddbac07c96f5eebe15f0d |
|
MD5 | af9989dc14445c3172c9b93ff9a85df3 |
|
BLAKE2b-256 | 5388a603776eb47a58ab115c50ca5e98b036bb9b2c9848b60cee22c7ecb587f3 |