telegram userbot made with pyrogram
My personal telegram userbot. Built with Pyrogram.
Create and start venv
for the dependencies:
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
Install dependencies:
pip install -r requirements.txt
Create a config.ini
file with your Telegram API id
and hash
in the following format:
[pyrogram]
api_id = 12345
api_hash = 0123456789abcdef0123456789abcdef
[plugins]
root = plugins
The root
is the folder with the plugins, in this repo it is plugins
, so there is no need to change this. More info at Pyrogram’s official docs.