Merhaba hocam bunu kodun tam olarak neresine eklicem.
bunu yaparsan sorunsuz kullanırsın, işine yaradıysa mehmetcik vakfına bağış yapabilirsin
proxy_ip = "123.45.67.89"
proxy_port = "8888"
proxies = {
"http": f"http://{proxy_ip}:{proxy_port}",
"https": f"https://{proxy_ip}:{proxy_port}",
}
url = "http://httpbin.org/ip"
response = requests.get(url, proxies=proxies, timeout=10)