├── .github └── FUNDING.yml ├── .gitignore ├── .version ├── API.txt ├── LICENSE ├── README.md ├── checker.py ├── data └── scraped_proxies.txt ├── raw_data.txt ├── results ├── bad.txt └── good.txt └── scraper.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GokuCodeZ/Proxy-Scraper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GokuCodeZ/Proxy-Scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GokuCodeZ/Proxy-Scraper/HEAD/API.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GokuCodeZ/Proxy-Scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GokuCodeZ/Proxy-Scraper/HEAD/README.md -------------------------------------------------------------------------------- /checker.py: -------------------------------------------------------------------------------- 1 | print("soon!") -------------------------------------------------------------------------------- /data/scraped_proxies.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /raw_data.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /results/bad.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/good.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GokuCodeZ/Proxy-Scraper/HEAD/scraper.py --------------------------------------------------------------------------------