python3初学者,练习使用爬虫抓取网页,随机找了个小说网站抓取,抓取html源代码没有问题,但是使用正则表达式,出现抓取数据后直接卡死,请问如何调试?
import urllib.request
import re
url = 'http://book.669977.net/xiuxiankuangtu/chapter.html'
response = urllib.request.urlopen(url)
html = response.read().decode('gbk')
url_number = re.findall('href="(/\w{5,20}/\d{3,8})',html)
print(url_number)
守着一只汪
梦里花落0921