This commit is contained in:
danamir
2020-12-04 13:09:55 +03:00
commit fab8c223bf
6 changed files with 461 additions and 0 deletions

9
proxy.py Normal file
View File

@@ -0,0 +1,9 @@
http_proxy = "http://10.10.10.3:3128"
https_proxy = "https://10.10.10.3:3128"
ftp_proxy = "ftp://10.10.10.3:3128"
proxyDict = {
"http" : http_proxy,
"https" : https_proxy,
"ftp" : ftp_proxy
}