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

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 .

Building

poetry plugin add poetry-dynamic-versioning
poetry build
poetry publish -u <pypi-username> -p <pypi-pwd>

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.3.0.tar.gz (71.7 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.3.0-py3-none-any.whl (76.3 kB view details)

Uploaded Python 3

File details

Details for the file telebot-against-war-0.3.0.tar.gz.

File metadata

  • Download URL: telebot-against-war-0.3.0.tar.gz
  • Upload date:
  • Size: 71.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.13

File hashes

Hashes for telebot-against-war-0.3.0.tar.gz
Algorithm Hash digest
SHA256 dbc10b8820fda21a5c4d0a8f7b1ac4b699c05524cea64da4fb4bc7518dc6e275
MD5 d0fb88c18dee02032d8f7673e4753758
BLAKE2b-256 9d541d1a08d0b522670a5714151e9f20f8d45588ec1fd97d4fb2bad0514dcab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for telebot_against_war-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4997d0d02fac09797b2185b429d06c177c043a9b9ecd3d2e44106cf6f6d10fb7
MD5 aae115cbb43912406e50198e050b64ed
BLAKE2b-256 83ab657b7822b0c8e3a72955e3b164d4ba4ce89ad557c8e0e6c3bc6bf17ccdd7

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