Im trying to connect to a website with a proxy, but it keeps connecting with my ip.
import requests
proxies = {
"https": "103.224.5.5:54143"
}
url = 'http://httpbin.org/ip'
r = requests.get(url, proxies=proxies)
ciao=r.json()
print(ciao)
Im trying to connect to a website with a proxy, but it keeps connecting with my ip.
import requests
proxies = {
"https": "103.224.5.5:54143"
}
url = 'http://httpbin.org/ip'
r = requests.get(url, proxies=proxies)
ciao=r.json()
print(ciao)
Copyright © 2021 Jogjafile Inc.