当前位置: 首页 > news >正文

商城网站 报价 方案平面设计论文5000字

商城网站 报价 方案,平面设计论文5000字,互联网公司排名2021完整版,做venn图的网站咱们这个任务啊#xff0c;就是要从一个指定的网站上#xff0c;抓取新闻内容#xff0c;然后把它们整整齐齐地保存到本地。具体来说#xff0c;就是要去光明网的板块里#xff0c;瞅瞅里面的新闻#xff0c;把它们一条条地保存下来。 首先#xff0c;咱得有个网址就是要从一个指定的网站上抓取新闻内容然后把它们整整齐齐地保存到本地。具体来说就是要去光明网的板块里瞅瞅里面的新闻把它们一条条地保存下来。 首先咱得有个网址这就是咱要去的地方。然后用requests这个神奇的小工具向这个网址发送个GET请求就像是对网站说“喂把你的内容给我送过来”。 接下来用lxml这个库来解析网页就像是拿到一本书咱得知道目录在哪儿正文在哪儿才能把需要的内容找出来。 咱们的目标是抓取页面上的新闻链接这些链接被放在了一系列的ul和li标签里。所以咱得一个个ul去看每个ul里面又是一堆li每个li里面才是咱们要的新闻链接。 找到链接后咱再次用requests去访问这个链接把新闻的详细内容给抓回来。标题、正文咱都要然后把它们整理一下每条新闻保存成一个txt文件文件名就按照咱抓取的顺序来编号这样方便管理。 过程中咱得注意网页上的链接可能有的是完整的有的可能就给了个后缀咱得处理好这个确保能正确访问到新闻的详细页面。然后就是把新闻的标题和内容提取出来去掉多余的空白字符整整齐齐地写入到文件里。 这样一来只要运行这段代码咱就能自动化地把网站上的新闻一条条地保存到本地了省时省力还能随时回头看看收集到的新闻呢。 后续如果需要额外的处理和补充可以私信联系我 import requests from lxml import html import os# 目标网站的url base_url https://politics.gmw.cn/ url base_url node_9844.htm# 使用requests库发送GET请求到目标网站 response requests.get(url) response.encoding utf-8 # 尝试使用utf-8解码# 解析HTML内容 tree html.fromstring(response.text) # 使用text代替content# 文件编号 file_num 1# 循环处理从ul[1]到ul[10] for ul_index in range(1, 11):# 循环处理每个ul中的li标签从li[1]开始如果没有找到li标签就跳出循环li_index 1while True:try:# 构建XPathxpath f/html/body/div[6]/div[1]/div[2]/ul[{ul_index}]/li[{li_index}]/a# 使用XPath查找特定的a标签a_tag tree.xpath(xpath)# 如果找到了a标签if a_tag:# 获取a标签的href属性也就是URLsub_url a_tag[0].get(href)sub_url base_url sub_url if not sub_url.startswith(http) else sub_urlprint(子url为,sub_url)# 获取子页面内容sub_response requests.get(sub_url)sub_response.encoding utf-8 # 尝试使用utf-8解码sub_tree html.fromstring(sub_response.text) # 使用text代替content# 获取标题title sub_tree.xpath(/html/body/div[6]/div[1]/h1/text())title title[0].strip() if title else # 去除两端的空白字符# 获取正文contents sub_tree.xpath(//*[idarticle_inbox]/div[5]/p/text())contents \n.join([content.strip() for content in contents if content.strip()]) if contents else # 去除两端的空白字符并删除空行# 写入到文件with open(f./txt/{str(file_num).zfill(2)}.txt, w, encodingutf-8, errorsignore) as f:f.write(title \n\n contents)# 更新文件编号file_num 1else:# 如果没有找到a标签就跳出循环break# 处理下一个li标签li_index 1except Exception as e:print(f处理XPath {xpath} 时发生错误: {e})break输出结果如下 子url为 https://politics.gmw.cn/2023-06/28/content_36660331.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36660279.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36660246.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36660217.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36660215.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36660103.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36659630.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36659390.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36659337.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36659325.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36659297.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36659135.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658702.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658613.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658674.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658631.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658595.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658527.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658463.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658416.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658377.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658411.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658401.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658372.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658356.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657735.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657732.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657622.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657620.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657627.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658305.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657625.htm 子url为 https://politics.gmw.cn/2023-06/28/content_36658293.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657544.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657204.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657203.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36657192.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655447.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655793.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655772.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655744.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655734.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655703.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655712.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655729.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655735.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655693.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655613.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655425.htm 子url为 https://politics.gmw.cn/2023-06/27/content_36655404.htm
http://www.eeditor.cn/news/123869/

相关文章:

  • 昆明网站服务淮南网云小镇怎么样
  • 做视频后期的网站上海保洁公司
  • 有人免费资源吗温州seo教程
  • 百度网站适配代码那个网站的域名便宜
  • app需要申请网站的子域名吗天河网站建设外包
  • 初中做网站软件北京做网站的公司东道
  • 民政局两学一做专题网站太原建设银行保安招聘网站
  • l林州住房建设部官方网站wordpress博客怎么搜索
  • 网站开发 创造收益北京海淀区有哪些企业
  • zencart网站建设flash 网站管理系统
  • 北京主页网站建设商城网站建设套餐
  • 商城网站不备案科普网站建设的支持力度
  • 购物网站毕业设计论文山东公路建设集团网站
  • 谷歌chrome手机版浙江建站优化品牌
  • 推广型网站建设网址免费做网站有哪些家
  • 北京网站建设 合一如何制作个人公众号
  • 做镜像网站利润潍坊哪里做网站
  • 松阳网站建设怎样才能在网上卖东西
  • wordpress模板 站长设计构建网站
  • 注册域名成功后怎样建设网站wordpress启用特色
  • 流程做网站石家庄做网站比较好的公司有哪些
  • 三亚同城招聘网站东莞著名网站建设企业
  • 建企业网站公司做电商网站电商公司
  • 网站优化怎么做论坛网站引导页动画
  • 关于做网站流程qq空间怎么做网站
  • html5网站布局教程网页设计实验总结报告
  • 如何设计制作企业网站网店怎么开店详细教程
  • txt怎么做网站建筑公司网站源码 php
  • 化妆品网站建设策略网页加速器安卓
  • 百度seo灰色词排名代发东莞网站建设优化东莞