赞
踩
python 3.8.2 Shell
也可以使用PyCharm
1、请求目标网页,用requests请求,如果还没有安装,打开cmd,输入下面命令进行安装
pip install requests
通过requests.get(url)请求网页信息,.text
可以获得网页文本内容,但还有标签。
2、用BeautifulSoup解析请求到的网页内容,如果还没有安装,打开cmd,输入下面命令进行安装
pip install BeautifulSoup4
通过BeautifulSoup(texts,‘lxml’)可以对请求到的网页文本进行解析。
注意:texts是文本信息,lxml是一个解析器(安装参考),也可以使用html.parser解析器。
from bs4 import BeautifulSoup#解析requests请求到的HTML页面 #from w3lib.html import remove_tags_with_content import requests#请求目标网页 url = 'https://www.bequgexs.com/8/8154/303304.html' con = requests.get(url) con.encoding = 'utf-8' texts = con.text print(con) print(texts) result = BeautifulSoup(texts,'lxml')#html.parser #print(result) div1 = result.find('div',attrs={'class':'bookname'}) div_zj = div1.find('h1') print(div_zj.text) div2 = result.find('div',attrs={'id':'content'}) #print(div2) div_nr = div2.text.replace('\xa0'*4,'\n\n\xa0\xa0') div_nr = div_nr.replace('(《》)','') f = open("赘婿第一章.doc",mode="a",encoding="utf-8") #a:把之前爬取的数据保存下来 #在windows下面,新文件的默认编码是gbk,而前面我们设置了utf-8 f.write(div_nr) #div_nr = div_nr.replace('天才一秒记住本站地址:[笔趣阁]','') #div_nr = div_nr.replace('https://www.bequgexs.com/最快更新!无广告!','') print(div_nr)
学好 Python 不论是就业还是做副业赚钱都不错,但要学会 Python 还是要有一个学习规划。最后大家分享一份全套的 Python 学习资料,给那些想学习 Python 的小伙伴们一点帮助!
包括:Python激活码+安装包、Python web开发,Python爬虫,Python数据分析,Python自动化测试学习等教程。带你从零基础系统性的学好Python!
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/838385
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。