i am trying to set my own proxy:
x=requests.get('https://ipinfo.io/ip')
print(x.text)
34.224*****
socks.set_default_proxy(socks.SOCKS5, '45.125.66.1**', 3***)
socket.socket = socks.socksocket
after this line code dose not emplements :
print(1)
x=requests.get('https://ipinfo.io/ip')
print(x.text)
please tell me how to set up my proxies ?
[edit by admin: formatting]