Connent to website with proxy not working (python)

56 Views Asked by At

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)
0

There are 0 best solutions below