怎么使用python获取网站的子链接
发布网友
发布时间:2022-04-30 03:00
我来回答
共1个回答
热心网友
时间:2023-10-09 04:48
可以使用urllib
import urllib
response=urllib.urlopen("网站地址")
page=response.read()
pos=page.find("<a href=\"")
while ~pos:
page=page[pos+9:]
lim=page.find('\"')
print "You've found a link:%s"%page[:lim]
pos=page.find("<a href=\"")