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

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.6.7.tar.gz (91.0 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.6.7-py3-none-any.whl (97.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: telebot_against_war-0.6.7.tar.gz
  • Upload date:
  • Size: 91.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for telebot_against_war-0.6.7.tar.gz
Algorithm Hash digest
SHA256 7ce4c6fed4cef7f25316637a3ce3573cf5e873b2ff31716e713b0bf54bc5b628
MD5 7222d5bc006fe8654f6490fc0d1f1c78
BLAKE2b-256 624e6ca6b54d58d34deebde44d11b848b0f1ad8f9cc2c21ea9c85e43639a2e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for telebot_against_war-0.6.7-py3-none-any.whl
Algorithm Hash digest
SHA256 da0df36888834ff85f44b478c12fb8946c05ab0a0e050d8db9a4ceb242c769cd
MD5 93ca5a31993de53f90108d2697b96fc8
BLAKE2b-256 3a961e90a32c100cdb2e581e780e2f4a58a4f0d735fe268c8eec1750729672e5

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