You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
botogram is a Python framework, which allows you to focus just on creating your
Telegram bots, without worrying about the underlying Bots API.
While most of the libraries for Telegram out there just wrap the Bots API,
botogram focuses heavily on the development experience, aiming to provide you
the best API possible. Most of the Telegram implementation details are managed
by botogram, so you can just focus on your bot.
importbotogrambot=botogram.create("YOUR-API-KEY")
@bot.command("hello")defhello_command(chat, message, args):
"""Say hello to the world!"""chat.send("Hello world")
if__name__=="__main__":
bot.run()
You can find the documentation at botogram.dev. Also, you can
get all the news about botogram in its Telegram channel.
Please note botogram currently doesn't support some of the upstream API
features. All of them will be implemented in botogram 1.0
Supported Python versions: 3.4+
License: MIT
Installation
You can install easily botogram with pip (be sure to have Python 3.4 or higher
installed):
$ python3 -m pip install botogram2
If you want to install from the source code, you can clone the repository and
install it with setuptools. Be sure to have Python 3.4 (or a newer version),
pip, virtualenv, setuptools and invoke installed:
$ git clone https://github.com/python-botogram/botogram.git
$ cd botogram
$ invoke install
On some Linux systems you might need to wrap the invoke install command with
sudo, if you don't have root privileges.