项目作者: mirkobrombin

项目描述 :
Telegram bot template in python-telegram-bot
高级语言: Python
项目地址: git://github.com/mirkobrombin/pybotgram.git
创建时间: 2019-08-26T17:34:10Z
项目社区:https://github.com/mirkobrombin/pybotgram

开源协议:GNU General Public License v3.0

下载


pybotgram

Telegram bot template in python-telegram-bot

Start from here

  • Clone this repo
  • Edit bot_token in configs.telegram
  • Install python-telegram-bot
    pip install python-telegram-bot
  • run your bot
    python run.py

Add new commands

  • create new file with your command name in commands directory with start or say as template
  • add to commands/init
  • add to run with dp.add_handler(..)

Add new dialog

  • create new file in dialogs directory with hello as template
  • add to dialogs/init
  • add to dialogs/handler

Utils?

In utils there are commonly used functions, mainly tools and dummy functions.

Dummy functions?

The dummy functions are functions that facilitate other functions.
For example user.get_name(..) facilitates the taking of the name and surname if the username is not present.

Add new utils

Each util should be part of the file that closes a set of functions.
For example get_name is an executable function on the user so it is present in the user file. A function that takes the id of a chat is part of the up (update) file.