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
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.1.dev171.tar.gz
(161.6 kB
view details)
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.dev171.tar.gz.
File metadata
- Download URL: telegrinder-0.1.dev171.tar.gz
- Upload date:
- Size: 161.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.10.3-arch1-2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
184d266a215ef219a8124d6a835fe02e8c298e4c8bee0925b3111e580dcb089e
|
|
| MD5 |
a2cc174c07d5fcb52a03ddc49b94bb2d
|
|
| BLAKE2b-256 |
4e51a60c3c41658e94c286a4522f34823f3d28a54cf2eb13e8c43ae9d7480a0c
|
File details
Details for the file telegrinder-0.1.dev171-py3-none-any.whl.
File metadata
- Download URL: telegrinder-0.1.dev171-py3-none-any.whl
- Upload date:
- Size: 209.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.10.3-arch1-2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e093d09df34cdf3cb5ac7c48689b322cc9131cc14c485b423ab8a3e415e6d95
|
|
| MD5 |
3d06b8ea8fd0f8a776dd58c05484c330
|
|
| BLAKE2b-256 |
2127b1922068ba5505b42f12bcc5a2465ef035ecdd92be57fa7c13c86c01ae8d
|