├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── config.py ├── helper ├── captcha_maker.py ├── db.py └── markup.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.bak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/config.py -------------------------------------------------------------------------------- /helper/captcha_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/helper/captcha_maker.py -------------------------------------------------------------------------------- /helper/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/helper/db.py -------------------------------------------------------------------------------- /helper/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/helper/markup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/Captcha-Pro-bot/HEAD/requirements.txt --------------------------------------------------------------------------------