python实现的读取网页并分词功能示例
作者:笨小孩好笨 时间:2022-05-08 07:06:38
本文实例讲述了python实现的读取网页并分词功能。分享给大家供大家参考,具体如下:
这里使用分词使用最流行的分词包jieba,参考:https://github.com/fxsjy/jieba
或点击此处本站下载jieba库。
代码:
import requests
from bs4 import BeautifulSoup
import jieba
# 获取html
url = "http://finance.ifeng.com/a/20180328/16049779_0.shtml"
res = requests.get(url)
res.encoding = 'utf-8'
content = res.text
# 添加至bs4
soup = BeautifulSoup(content, 'html.parser')
div = soup.find(id = 'main_content')
# 写入文件
filename = 'news.txt'
with open(filename,'w',encoding='utf-8') as file_object:
# <p>标签的处理
for line in div.findChildren():
file_object.write(line.get_text()+'\n')
# 使用分词工具
seg_list = jieba.cut("我来到北京清华大学", cut_all=True)
print("Full Mode: " + "/ ".join(seg_list)) # 全模式
seg_list = jieba.cut("我来到北京清华大学", cut_all=False)
print("Default Mode: " + "/ ".join(seg_list)) # 精确模式
seg_list = jieba.cut("他来到了网易杭研大厦") # 默认是精确模式
print(", ".join(seg_list))
with open(filename,'r',encoding='utf-8') as file_object:
with open('cut_news.txt','w',encoding='utf-8') as file_cut_object:
for line in file_object.readlines():
seg_list = jieba.cut(line,cut_all=False)
file_cut_object.write('/'.join(seg_list))
爬取结果:
分词结果:
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/u013288190/article/details/79736198
标签:python,读取网页,分词
0
投稿
猜你喜欢
使用AJAX技术的十大理由
2008-04-30 13:21:00
Python使用add_subplot与subplot画子图操作示例
2022-12-15 13:14:28
预防PHPDDOS的发包攻击别人的方法(iis+linux)
2023-10-14 04:09:34
SQL的SUBSTR()函数使用介绍
2024-01-16 14:19:27
python中lambda函数 list comprehension 和 zip函数使用指南
2021-08-28 22:16:21
pytorch:torch.mm()和torch.matmul()的使用
2022-05-25 21:32:40
php 中phar包的使用教程详解
2024-03-16 15:38:48
MySQL20个高性能架构设计原则(值得收藏)
2024-01-25 04:07:02
pandas.dataframe按行索引表达式选取方法
2021-10-28 20:26:32
Python 中的参数传递、返回值、浅拷贝、深拷贝
2022-10-12 12:59:16
tensorflow mnist 数据加载实现并画图效果
2023-10-20 15:07:33
导致python中import错误的原因是什么
2023-08-21 05:24:04
python实现的批量分析xml标签中各个类别个数功能示例
2021-01-16 00:22:00
python绘制分组对比柱状图
2021-01-03 06:48:26
pytorch制作自己的LMDB数据操作示例
2023-05-24 11:51:27
探究MySQL优化器对索引和JOIN顺序的选择
2024-01-14 14:36:00
nvm版本导致npm install报错Unexpected token '.'的解决办法
2024-05-05 09:21:04
python实现百度关键词排名查询
2023-01-19 12:26:58
Flask模板引擎之Jinja2语法介绍
2021-11-15 21:08:11
python使用selenium登录QQ邮箱(附带滑动解锁)
2022-01-24 13:01:20