Skip to content

Instantly share code, notes, and snippets.

@Deathcrash
Last active June 29, 2023 10:54
Show Gist options
  • Save Deathcrash/05244fb366328ae78ff53d8e65717abf to your computer and use it in GitHub Desktop.
Save Deathcrash/05244fb366328ae78ff53d8e65717abf to your computer and use it in GitHub Desktop.
Proxy cheker
proxies = []
for proxy in proxies:
response = requests.get(proxies=proxy)
if response.status_code == requests.codes['ok']:
break
response.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment