1406_252_159 / 1406_252_159.py
antitheft159's picture
Update 1406_252_159.py
8164428 verified
raw
history blame contribute delete
279 Bytes
import requests
# Replace with your proxy details
proxy = {
'http': 'http://your_proxy_ip:proxy_port',
'https': 'http://your_proxy_ip:proxy_port',
}
# Example request using the proxy
response = requests.get('http://httpbin.org/ip', proxies=proxy)
print(response.json())