pzgram

A pz-way to create your Telegram Bot


Project maintained by infopz Hosted on GitHub Pages — Theme by mattgraham

HomePage

pzGram is a Python3 library that allows you to create your Telegram bot focusing on what the bot has to do and not on how the bot works.

import pzgram
bot = pzgram.Bot(BOTKEY)

def hello(chat, message)
    chat.send("Message Received")
    print(message.text)
    
bot.set_commands({"hello": hello})
bot.run()

The current version of pzGram support all types of messages, from users, groups and channels, but it does not support payments and games yet.

pzGram is an open-source project, created by Giovanni Casari.

Developers’ Telegram Group here

For more information contact me:

Supported Version: Python 3.x

License: Apache 2.0

Next Page