Click inspired command interface toolkit for pyton-telegram-bot
Project description
telegram-click
Click inspired command interface toolkit for pyton-telegram-bot.
Features
- POSIX style argument parsing
- Type conversion
- Custom type conversion support
- Input validation
- Type conversion
- Automatic help messages
- Show help messages when a command was used with invalid arguments
- List all available commands with a single method
- Permission handling
- Set up permissions for each command separately
- Limit command execution to private chats or group admins
- Combine permissions using logical operators
- Create custom permission handlers
- Error handling
- Automatically send error messages if something goes wrong
- Optionally send exception messages
How to use
Install this library as a dependency to use it in your project.
pip install telegram-click
Then annotate your command handler functions with the @command
decorator
of this library:
from telegram import Update
from telegram.ext import CallbackContext
from telegram_click.decorator import command
from telegram_click.argument import Argument
class MyBot:
[...]
@command(name='start', description='Start bot interaction')
def _start_command_callback(self, update: Update, context: CallbackContext):
# do something
pass
@command(name='age',
description='Set age',
arguments=[
Argument(name='age',
description='The new age',
type=int,
validator=lambda x: x > 0,
example='25')
])
def _age_command_callback(self, update: Update, context: CallbackContext, age: int):
context.bot.send_message(update.effective_chat.id, "New age: {}".format(age))
Arguments
telegram-click automatically parses arguments based on
shlex POSIX rules
so in general space acts as an argument delimiter and quoted arguments
are parsed as a single one (supporting both double ("
) and
single ('
) quote characters).
Types
Since all user input initially is of type str
there needs to be a type
conversion if the expected type is not a str
. For basic types like
bool
, int
, float
and str
converters are built in to this library.
If you want to use other types you have to specify how to convert the
str
input to your type using the converter
attribute of the
Argument
constructor:
from telegram_click.argument import Argument
Argument(name='age',
description='The new age',
type=MyType,
converter=lambda x: MyType(x),
validator=lambda x: x > 0,
example='25')
Permission handling
If a command should only be executable when a specific criteria is met
you can specify those criteria using the permissions
parameter:
from telegram import Update
from telegram.ext import CallbackContext
from telegram_click.decorator import command
from telegram_click.permission import GROUP_ADMIN
@command(name='permission',
description='Needs permission',
permissions=GROUP_ADMIN)
def _permission_command_callback(self, update: Update, context: CallbackContext):
pass
Multiple permissions can be combined using &
, |
and ~
(not) operators.
If a user does not have permission to use a command it will not be displayed when this user generate a list of commands.
Integrated permission handlers
Name | Description |
---|---|
PRIVATE_CHAT |
Requires command execution inside of a private chat |
NORMAL_GROUP_CHAT |
Requires command execution inside a normal group |
SUPER_GROUP_CHAT |
Requires command execution inside a supergroup |
GROUP_CHAT |
Requires command execution inside either a normal or supergroup |
USER_ID |
Only allow users with a user id specified |
USER_NAME |
Only allow users with a username specified |
GROUP_CREATOR |
Only allow the group creator |
GROUP_ADMIN |
Only allow the group admin |
NOBODY |
Nobody has permission. Useful for callbacks only that only trigger via code and not by user interaction (f.ex. "unknown command" handler) |
Custom permission handler
If none of the integrated handlers suit your needs you can simply write
your own permission handler by extending the Permission
base class
and pass an instance of the MyPermission
class to the list of permissions
:
from telegram import Update
from telegram.ext import CallbackContext
from telegram_click.decorator import command
from telegram_click.permission.base import Permission
from telegram_click.permission import GROUP_ADMIN
class MyPermission(Permission):
def evaluate(self, update: Update, context: CallbackContext) -> bool:
from_user = update.effective_message.from_user
return from_user.id in [12345, 32435]
@command(name='permission', description='Needs permission',
permissions=MyPermission() & GROUP_ADMIN)
def _permission_command_callback(self, update: Update, context: CallbackContext):
pass
Show "Permission denied" message
By default command calls coming from a user without permission are ignored.
If you want to send them a "permission denied" like message you can
pass this message to the permission_denied_message
argument of the
@command
decorator.
Targeted commands
When using a MessageHandler
instead of a CommandHandler
it is possible to catch commands that are targeted at other bots.
By default only messages without a target and messages that are targeted
directly at this bot are processed.
To control this behaviour specify the command_target
parameter:
from telegram import Update
from telegram.ext import CallbackContext
from telegram_click.decorator import command
from telegram_click import CommandTarget
from telegram_click.permission import NOBODY
@command(name="commands",
description="List commands supported by this bot.",
permissions=NOBODY,
command_target=CommandTarget.UNSPECIFIED | CommandTarget.SELF)
def _unknown_command_callback(self, update: Update, context: CallbackContext):
Error handling
telegram-click automatically handles errors when
- an argument can not be parsed correctly
- an invalid value is passed for an argument
- too many arguments are passed
In these cases the message of the internal exception is sent to the chat along with a help message for the failed command.
Note:
This error handling does also handle errors that occur in your handler
function and (by default) prints the exception text to the chat. If you
don't want to send the exception message to the user set the print_error
parameter to False
.
Contributing
GitHub is for social coding: if you want to write code, I encourage contributions through pull requests from forks of this repository. Create GitHub tickets for bugs and new features and comment on the ones that you are interested in.
License
telegram-click
Copyright (c) 2019 Markus Ressel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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
File details
Details for the file telegram_click-2.3.0.tar.gz
.
File metadata
- Download URL: telegram_click-2.3.0.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e434598b894c1da02b31ae6122038a7a4acaf661902034f2342c08c45511cc7 |
|
MD5 | bc36694382acbd9fd2fb2cf83e832889 |
|
BLAKE2b-256 | 9d05642bc14b98f221357dc4cd02c10cfb1dd094400e5e5524fd95d9bf24740b |
File details
Details for the file telegram_click-2.3.0-py3-none-any.whl
.
File metadata
- Download URL: telegram_click-2.3.0-py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24c668819412cce74f0533cea3d5117ca3aa0bdea061157ab10ab69156c022f8 |
|
MD5 | 232fc8078b04b1b5131715137c489463 |
|
BLAKE2b-256 | 7f314fbfaa87db5475e6f36ae1dd83fc59401a49633b7275b0c2fc92c75dad9d |