Archived
1
0
Fork 0

checktitle

This commit is contained in:
yzhh 2020-08-03 22:58:40 +08:00
parent 76db4dcf2c
commit cce35032ed
3 changed files with 19 additions and 8 deletions

View file

@ -50,8 +50,12 @@ async def im(str1):
metatext = requests.get(url,timeout=5)
file = json.loads(metatext.text)
try:
x = file['query']['pages']
y = sorted(x.keys())[0]
try:
x = file['query']['pages']
y = sorted(x.keys())[0]
except Exception:
return('发生错误:请检查您输入的标题是否正确。')
if int(y) == -1:
if 'invalid' in x['-1']:
rs = re.sub('The requested page title contains invalid characters:','请求的页面标题包含非法字符:',x['-1']['invalidreason'])
@ -181,7 +185,7 @@ async def imarc(str1):
return(xx)
except Exception as e:
traceback.print_exc()
return('发生错误:'+str(e))
pass
except Exception as e:
traceback.print_exc()
return('发生错误:'+str(e))
pass

View file

@ -17,8 +17,12 @@ async def m(lang,str1):
metatext = requests.get(url,timeout=5)
try:
file = json.loads(metatext.text)
x = file['query']['pages']
y = sorted(x.keys())[0]
try:
x = file['query']['pages']
y = sorted(x.keys())[0]
except Exception:
return('发生错误:请检查您输入的标题是否正确。')
if int(y) == -1:
if 'invalid' in x['-1']:
rs = re.sub('The requested page title contains invalid characters:','请求的页面标题包含非法字符:',x['-1']['invalidreason'])

View file

@ -9,8 +9,11 @@ async def Wiki(path1,pagename):
metatext = requests.get(metaurl, timeout=10)
file = json.loads(metatext.text)
try:
x = file['query']['pages']
y = sorted(x.keys())[0]
try:
x = file['query']['pages']
y = sorted(x.keys())[0]
except Exception:
return('发生错误:请检查您输入的标题是否正确。')
if int(y) == -1:
if 'invalid' in x['-1']:
rs = re.sub('The requested page title contains invalid characters:','请求的页面标题包含非法字符:',x['-1']['invalidreason'])