├── .gitignore ├── README.md ├── db_helpers.py ├── dbexport.sql ├── faker.py ├── proxies_scrape.py ├── recaptcha_api_v1.py ├── recaptcha_api_v2.py ├── requirements.txt ├── scrape.py └── scraping_helpers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/README.md -------------------------------------------------------------------------------- /db_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/db_helpers.py -------------------------------------------------------------------------------- /dbexport.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/dbexport.sql -------------------------------------------------------------------------------- /faker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/faker.py -------------------------------------------------------------------------------- /proxies_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/proxies_scrape.py -------------------------------------------------------------------------------- /recaptcha_api_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/recaptcha_api_v1.py -------------------------------------------------------------------------------- /recaptcha_api_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/recaptcha_api_v2.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/scrape.py -------------------------------------------------------------------------------- /scraping_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preetchaahal/python-chaturbate-bot/HEAD/scraping_helpers.py --------------------------------------------------------------------------------