This commit is contained in:
unknown
2024-05-08 14:23:06 -07:00
parent b4df03c1f5
commit 4f734ddf74
12 changed files with 36973 additions and 0 deletions

11
gpt/pipe_proxy.py Normal file
View File

@@ -0,0 +1,11 @@
import requests
username = "l6wwf0m49nxqkyz"
password = "bdji5a8r2wt4zun"
proxy = "rp.proxyscrape.com:6060"
proxy_auth = "{}:{}@{}".format(username, password, proxy)
proxies = {
"http":"http://{}".format(proxy_auth)
}
urlToGet = "http://ip-api.com/json"
r = requests.get(urlToGet , proxies=proxies)
print("Response:\n{}".format(r.text))