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.dev169.tar.gz
(157.9 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.dev169.tar.gz.
File metadata
- Download URL: telegrinder-0.1.dev169.tar.gz
- Upload date:
- Size: 157.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee517c8d73654d4ed7ba762037d430725b5a3935106a978e500bdfd6205bc161
|
|
| MD5 |
e4a2a86f27727fde4dfd9fe6cd4b4ccc
|
|
| BLAKE2b-256 |
de15424e173fb8dc3591485e9139ad2c1cf3df1d6329b25d21a070b3df14ff34
|
File details
Details for the file telegrinder-0.1.dev169-py3-none-any.whl.
File metadata
- Download URL: telegrinder-0.1.dev169-py3-none-any.whl
- Upload date:
- Size: 205.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
239ac238f0e7053cc7c12d4e6a871764e92754ae61b7ecbfa49a2e6bf830e80a
|
|
| MD5 |
c6492fe9e10efd97e839d18d2933c0c4
|
|
| BLAKE2b-256 |
a2e03ded4c486d8a0c0eba4b8968937872d77f40f351880f6812d5e02c2d3cca
|