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.dev170.tar.gz
(158.2 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.dev170.tar.gz.
File metadata
- Download URL: telegrinder-0.1.dev170.tar.gz
- Upload date:
- Size: 158.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.9.8-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c15957bc93060c68a780b635d9ec5fb548bb2baf6e2030abe4d4c23ec362cd82
|
|
| MD5 |
9c9b89f373e31c015668c182666daf34
|
|
| BLAKE2b-256 |
2b558850a53bf414a920b0465793a6b78d697ba85c02fcfab51c70c9e69dff27
|
File details
Details for the file telegrinder-0.1.dev170-py3-none-any.whl.
File metadata
- Download URL: telegrinder-0.1.dev170-py3-none-any.whl
- Upload date:
- Size: 205.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.9.8-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66b2ba41a6480d98cf11f855662747cb8f0fc2903d2205ea502c8d0c449942e8
|
|
| MD5 |
1706dbc9f1c48c1dc1a65773e2aa18b5
|
|
| BLAKE2b-256 |
e2a36407325ff192edadd944d3d49ab29e1224a1b96a7a16ae7b106a24bcc558
|