├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── textnow_accounts.csv ├── Accounts ├── 6137065830 │ └── avatar.jpg └── 9103781476 │ └── avatar.jpg ├── LICENSE ├── README.md ├── api.py ├── chromedriver ├── enums.py ├── errors.py ├── fake_person.py ├── img ├── forget_password.png ├── invalid_code.png ├── last_name.png ├── login_via_phone_number.png ├── mail_access.png ├── many_try.png ├── next_btn.png ├── ok_btn.png ├── phone_banned.png ├── reset.png ├── reset_account.png ├── reset_account_form.png ├── reset_message.png ├── sign_up.png ├── start_messaging.png ├── telegram_first_screen.png ├── tg_main.png └── via_sms.png ├── keep_log.sh ├── ps.py ├── requirements.txt ├── run.py ├── telegram_desktop.py ├── test.py ├── textnow.py ├── tg-server.pub ├── utility.py └── voice.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/textnow_accounts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/.vscode/textnow_accounts.csv -------------------------------------------------------------------------------- /Accounts/6137065830/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/Accounts/6137065830/avatar.jpg -------------------------------------------------------------------------------- /Accounts/9103781476/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/Accounts/9103781476/avatar.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/api.py -------------------------------------------------------------------------------- /chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/chromedriver -------------------------------------------------------------------------------- /enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/enums.py -------------------------------------------------------------------------------- /errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/errors.py -------------------------------------------------------------------------------- /fake_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/fake_person.py -------------------------------------------------------------------------------- /img/forget_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/forget_password.png -------------------------------------------------------------------------------- /img/invalid_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/invalid_code.png -------------------------------------------------------------------------------- /img/last_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/last_name.png -------------------------------------------------------------------------------- /img/login_via_phone_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/login_via_phone_number.png -------------------------------------------------------------------------------- /img/mail_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/mail_access.png -------------------------------------------------------------------------------- /img/many_try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/many_try.png -------------------------------------------------------------------------------- /img/next_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/next_btn.png -------------------------------------------------------------------------------- /img/ok_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/ok_btn.png -------------------------------------------------------------------------------- /img/phone_banned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/phone_banned.png -------------------------------------------------------------------------------- /img/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/reset.png -------------------------------------------------------------------------------- /img/reset_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/reset_account.png -------------------------------------------------------------------------------- /img/reset_account_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/reset_account_form.png -------------------------------------------------------------------------------- /img/reset_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/reset_message.png -------------------------------------------------------------------------------- /img/sign_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/sign_up.png -------------------------------------------------------------------------------- /img/start_messaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/start_messaging.png -------------------------------------------------------------------------------- /img/telegram_first_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/telegram_first_screen.png -------------------------------------------------------------------------------- /img/tg_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/tg_main.png -------------------------------------------------------------------------------- /img/via_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/img/via_sms.png -------------------------------------------------------------------------------- /keep_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/keep_log.sh -------------------------------------------------------------------------------- /ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/ps.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/run.py -------------------------------------------------------------------------------- /telegram_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/telegram_desktop.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/test.py -------------------------------------------------------------------------------- /textnow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/textnow.py -------------------------------------------------------------------------------- /tg-server.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/tg-server.pub -------------------------------------------------------------------------------- /utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/utility.py -------------------------------------------------------------------------------- /voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazaheriaan/Telegram-Auto-Sign-Up/HEAD/voice.py --------------------------------------------------------------------------------