当前位置:编程学习 > python >>

python提取网页的url代码

实例代码
import re
import urllib
url="http://www.ite5e.com"
s=urllib.urlopen(url).read()
ss=s.replace(" ","")
urls=re.findall(r"<a.*?href=.*?</a>",ss,re.I)
for i in urls:
print i
else:
print this is over
补充:Web开发 , Python ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,