Modern visionary telegram bot framework.
Project description
Telegrinder
Framework for effective and reliable telegram bot building.
Still in development.
- Type hinted
- Customizable and extensible
- Ready to use scenarios and rules
- Fast models built on msgspec
- Both low-level and high-level API
- Support optional dependecies
Getting started
Install using pip:
pip install telegrinder
Using poetry:
poetry add telegrinder
Install from github:
pip install -U https://github.com/timoniq/telegrinder/archive/dev.zip
poetry add git+https://github.com/timoniq/telegrinder.git#dev
Basic example:
from telegrinder import API, Message, Telegrinder, Token
from telegrinder.modules import logger
from telegrinder.rules import Text
api = API(token=Token("123:token"))
bot = Telegrinder(api)
logger.set_level("INFO")
@bot.on.message(Text("/start"))
async def start(message: Message):
me = (await api.get_me()).unwrap()
await message.answer(f"Hello, {message.from_user.full_name}! I'm {me.full_name}.")
bot.run_forever()
Documentation
Community
Join our telegram forum.
Contributing
License
Telegrinder is MIT licensed
Copyright © 2022-2024 timoniq
Copyright © 2024 luwqz1
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
telegrinder-0.3.1.tar.gz
(165.2 kB
view hashes)
Built Distribution
telegrinder-0.3.1-py3-none-any.whl
(222.5 kB
view hashes)
Close
Hashes for telegrinder-0.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6300b553efe15bc439491974aefb7286feb30f6f9d7dd6200755f0403d24b69 |
|
MD5 | fc503da973ee2a10921904721b84b8b8 |
|
BLAKE2b-256 | b6c6186bb3dd1944ad7d2d8bd7aef329040a55b85beec0b3e4f43ed9f20f0e78 |