野性斑马

文章
5
资源
0
加入时间
2年10月18天

python爬虫 BeautifulSoup

导入库:import requestsfrom bs4 import BeautifulSoup获取html文件:def getHtml(url): res = requests.get(url,timeout=2,headers={'User-Agent':'Baiduspider'}) encode = res.encoding s=res.content s.decode(encode) return s生成实例: html = getHt