├── .github └── workflows │ └── action.yml ├── .gitignore ├── LICENSE ├── README.md ├── files ├── config.json ├── http.json ├── metadata.json ├── proxies.json ├── proxies.log ├── random.json ├── socks4.json ├── socks5.json ├── test.md └── timestamp.json ├── requirements.txt ├── src ├── async_run.py └── sync_run.py └── start.sh /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/README.md -------------------------------------------------------------------------------- /files/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "update_frequency_in_minutes": 30 3 | } -------------------------------------------------------------------------------- /files/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/http.json -------------------------------------------------------------------------------- /files/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/metadata.json -------------------------------------------------------------------------------- /files/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/proxies.json -------------------------------------------------------------------------------- /files/proxies.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/proxies.log -------------------------------------------------------------------------------- /files/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/random.json -------------------------------------------------------------------------------- /files/socks4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/socks4.json -------------------------------------------------------------------------------- /files/socks5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/socks5.json -------------------------------------------------------------------------------- /files/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/files/test.md -------------------------------------------------------------------------------- /files/timestamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "utc": "2024-11-13 13:42:58.702215+00:00" 3 | } -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/async_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/src/async_run.py -------------------------------------------------------------------------------- /src/sync_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/src/sync_run.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simatwa/free-proxies/HEAD/start.sh --------------------------------------------------------------------------------