修改makefile

This commit is contained in:
2022-12-04 19:29:09 +08:00
parent 08dbe1cb80
commit c8ccc1dff5
30 changed files with 1620 additions and 112 deletions

View File

@@ -7,32 +7,21 @@ with open("/var/lib/dpkg/status", "r") as i:
if unConnect:
print("52专版将会无法连接服务器")
badUrl = [
"http://120.25.153.144",
"https://304626p927.goho.co",
"https://30x46269h2.goho.co",
"http://gfdgdxi.msns.cn"
]
class Respon:
text = ""
def get(url, timeout=None): # -> requests.Response:
if unConnect:
# 筛选 Url,只有特定的 url 才会被拦截
for i in badUrl:
if i in url:
raise Exception("52专版不支持连接作者服务器")
# 全部 Url拦截
raise Exception("52专版不支持连接服务器")
if timeout == None:
return requests.get(url)
return requests.get(url, timeout=timeout)
def post(url, data, timeout=None):
if unConnect:
# 筛选 Url,只有特定的 url 才会被拦截
for i in badUrl:
if i in url:
raise Exception("52专版不支持连接作者服务器")
# 全部 Url拦截
raise Exception("52专版不支持连接服务器")
if timeout == None:
return requests.post(url, data)
return requests.post(url, data, timeout=timeout)