This repository has been archived on 2024-10-14. You can view files and clone it, but cannot push or open issues or pull requests.
pykeyboard/examples/bot/modules/install.py
2020-06-11 01:04:30 +03:00

11 lines
256 B
Python

from .. import App
from pyrogram import Filters
@App.on_message(Filters.command('install'))
def install_command(client, message):
message.reply_text(
'<b>Installation:</b>\n\n'
'<code>pip install -U pykeyboard</code>'
)