so far calls a website and prints to stdout

master
Felix Pankratz 5 years ago
commit 2bc6338803

@ -0,0 +1,5 @@
## panxy
# proxying requests through random proxies :)
started 20200324 by panki

@ -0,0 +1,15 @@
#!/usr/bin/env python3
# panxy, a random proxy connector
PXY_IP = "200.89.178.196"
PX_PORT = 80
from urllib import request
target = "https://theresno.cloud/ip"
result = request.urlopen(target)
content = result.read().decode()
print(content)
Loading…
Cancel
Save