你访问的网址 wap.ezua.com 即将失效。请记录保存新网址:
网址一 网址二 网址三 网址四
如忘记网址、无法访问等,发送email邮件获取最新网址: geturl001@gmail.com
第一会所 sis001.com © 2021
LEVEL 2
import requests import re url = 'http://sis001.com/forum/forum-25-1.html' response = requests.get(url) response.encoding = 'GBK' html = response.text a = re.findall(r'<tbody id="normalthread.*?</tbody>', html, re.S) for i in a: b = re.findall(r'<span id="thread.*?"><a href="(.*?)">(.*?)</a></span>', i)[0] print(b)
查看详细资料
TOP
LEVEL 1
LEVEL 4