Skip to main content

Async-first fork of pyTelegramBotApi

Project description

PyPI package version Supported Python versions

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

ruff check --fix
ruff format

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.14.tar.gz (97.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

telebot_against_war-0.7.14-py3-none-any.whl (104.2 kB view details)

Uploaded Python 3

File details

Details for the file telebot_against_war-0.7.14.tar.gz.

File metadata

  • Download URL: telebot_against_war-0.7.14.tar.gz
  • Upload date:
  • Size: 97.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for telebot_against_war-0.7.14.tar.gz
Algorithm Hash digest
SHA256 cc4eea8acadc42dcad0ef661b701e54f7ff1ac7a6a3324d2ce724992f0f8062b
MD5 6e38420859488a7fff29870f2a8f2ce3
BLAKE2b-256 36201973b6e21485480d176d1524f622a698bfb3c2365afa5c113b72a06d2a78

See more details on using hashes here.

File details

Details for the file telebot_against_war-0.7.14-py3-none-any.whl.

File metadata

File hashes

Hashes for telebot_against_war-0.7.14-py3-none-any.whl
Algorithm Hash digest
SHA256 480e8d67a47b6de3b0ea46cfba8fcce3b4c037f08a09bacd070bf2fe1a8f75c1
MD5 d2892040968bf025e9213169668830c3
BLAKE2b-256 f07791da60784b5ea63fccf56a896d7272c6e9c4e1fea10cf619ce5cb1a1b17b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page