Framework for effective and reliable async telegram bot building.
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
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
logger.set_level("INFO")
api = API(token=Token("123:token"))
bot = Telegrinder(api)
@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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file telegrinder-0.1.dev159.tar.gz.
File metadata
- Download URL: telegrinder-0.1.dev159.tar.gz
- Upload date:
- Size: 136.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/6.5.0-25-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
724540e6ea49b451cb2fbd2697debf08c6a2712a7e8a6f488bcf316d3f000857
|
|
| MD5 |
124a36ffba9a586bcc217034798ffefa
|
|
| BLAKE2b-256 |
48bf09c8f26d14043b60b1d962f79dd0b6ebba7bc175a2b443f551a2181f288b
|
File details
Details for the file telegrinder-0.1.dev159-py3-none-any.whl.
File metadata
- Download URL: telegrinder-0.1.dev159-py3-none-any.whl
- Upload date:
- Size: 175.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/6.5.0-25-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
890f457af45ee9fc7eb33d5e39748106dbd3a5890bcc76f03341dce184566774
|
|
| MD5 |
9ee8273ae17a664c0670659b3a048739
|
|
| BLAKE2b-256 |
dedc4c29c52b619deb953a1e7e3751307899e8efd66e3cb667fbc82dc6470312
|