Flask-inspired Telegram bot micro framework for Python.
Project description
Telegrask
Flask-inspired Telegram bot micro framework for Python. Main idea is to use callback function decorators and make bot creating more intuitive for developer.
Installing
$ python3 -m pip install Telegrask
Simple "Hello World" bot example
from telegrask import Telegrask
bot = Telegrask("BOT_TOKEN")
@bot.command("hello", help='display "Hello, World!"')
def hello_command(update, context):
update.message.reply_text("Hello, World!")
if __name__ == "__main__":
bot.run(debug=True)
More examples in examples folder.
Equivalent in pure python-telegram-bot
Click to show
from telegram.ext import Updater, CommandHandler
from telegram import ParseMode
import logging
logging.basicConfig(format="%(levelname)s - %(message)s", level=logging.DEBUG)
logger = logging.getLogger(__name__)
def hello_command(update, context):
update.message.reply_text("Hello, World!")
def help_command(update, context):
help_content = """*Available commands*
/hello
display "Hello, World!"
/help
display this message
"""
update.message.reply_text(help_content, parse_mode=ParseMode.MARKDOWN)
def main():
global updater
updater = Updater("BOT_TOKEN")
dispatcher = updater.dispatcher
dispatcher.add_handler(CommandHandler("hello", hello_command))
dispatcher.add_handler(CommandHandler(["help", "start"], help_command))
updater.start_polling()
updater.idle()
if __name__ == "__main__":
main()
Useful links
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
Telegrask-0.3.7.tar.gz
(12.9 kB
view hashes)
Built Distribution
Telegrask-0.3.7-py3-none-any.whl
(12.3 kB
view hashes)
Close
Hashes for Telegrask-0.3.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b58ef7cf1a296ca6e3c9e72f8e6bdeabe2903a2daef32e270b7b79372edfc1db |
|
MD5 | c1db3a4000339fc84ec71f00180bd078 |
|
BLAKE2b-256 | 0087a17152e47d76dd2327adc7769c1b256f7ca25f89a02159115aee7b67c4c9 |