Last active
June 29, 2023 10:54
-
-
Save AlgorithmAlchemy/05244fb366328ae78ff53d8e65717abf to your computer and use it in GitHub Desktop.
Proxy cheker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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