├── run ├── selfs.py ├── install.sh └── README.md /run: -------------------------------------------------------------------------------- 1 | while true; do 2 | python3.6 selfs.py 3 | done 4 | -------------------------------------------------------------------------------- /selfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attavakoli/PyroSelf/HEAD/selfs.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | sudo add-apt-repository ppa:deadsnakes/ppa 2 | sudo add-apt-repository ppa:jonathonf/python-3.6 3 | sudo apt-get update 4 | sudo apt-get install python3.6 5 | sudo apt install python3-pip 6 | sudo python3.6 -m pip install -U setuptools 7 | sudo python3.6 -m pip install -U pyrogram 8 | sudo python3.6 -m pip install -U pyrogram[tgcrypto] 9 | sudo python3.6 -m pip install --upgrade tgcrypto 10 | sudo python3.6 -m pip install Khayyam 11 | sudo python3.6 -m pip install termcolor 12 | sudo python3.6 -m pip install redis 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Telegram Cli Bot 2020 2 | 3 | ### Library 4 | Pyrogram 5 | 6 | # Pyro-Self 7 | By : @Salazar & @Sigaris 8 | 9 | ### Requirements 10 | - Python 3.6 11 | - Telegram API key 12 | 13 | ### Installing 14 | 1 - get api key in telegram website. 15 | - enter your number and click on `API development tools` 16 | - save `config api_id` & `config api_hash` 17 | 18 | 2 - 19 | ```bash 20 | git clone https://github.com/attavakoli/PyroSelf.git 21 | cd PyroSelf 22 | chmod +x install.sh && run 23 | ./install.sh 24 | ``` 25 | 26 | ### Run bot 27 | 1 - 28 | ``` 29 | ./run 30 | send api_id self... 31 | send api_hash self... 32 | send user id self... 33 | send user id log self... 34 | 35 | send number-phone self... 36 | send code telegram... 37 | ``` 38 | # screen ./run 39 | 40 | 41 |
42 |
43 |
44 |
45 |
46 |