now through proxy for http and https, yaay
This commit is contained in:
parent
2bc6338803
commit
7553b45a34
9
panxy.py
9
panxy.py
@ -1,14 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
# panxy, a random proxy connector
|
||||
|
||||
PXY_IP = "200.89.178.196"
|
||||
PX_PORT = 80
|
||||
|
||||
from urllib import request
|
||||
import sys
|
||||
target = "http://theresno.cloud/ip"
|
||||
|
||||
target = "https://theresno.cloud/ip"
|
||||
proxy_handler = request.ProxyHandler({'https': 'http://felixpankratz.de:80/', 'http': 'http://felixpankratz.de:80/' })
|
||||
|
||||
result = request.urlopen(target)
|
||||
opener = request.build_opener(proxy_handler)
|
||||
content = result.read().decode()
|
||||
|
||||
print(content)
|
||||
|
Loading…
Reference in New Issue
Block a user