ChatgptPro 2023-03-09 13:13 采纳率: 100%
浏览 14
已结题

python解析sitemap需求

判断是不是sitemapindex,

<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

如果是sitemapindex则循环解析子xml,如果不是就直接解析xml文件
xml文件需要保留url和lasmod

  • 写回答

2条回答 默认 最新

  • 没掉发的程序员 山东创站网络科技有限公司官方账号 2023-03-09 13:34
    关注

    可以使用Python中的ElementTree库来解析XML。

    首先,我们需要将字符串解析为XML元素对象,可以使用ElementTree库中的fromstring()方法实现。

    然后通过ElementTree库中的findall()方法,查找sitemap元素,再通过元素的子元素loc和lastmod获取对应的值。

    以下是具体代码实现:

    import xml.etree.ElementTree as ET
    
    content = '''<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
        <sitemap>
            <loc>https://www.u9seo.com/post-sitemap1.xml</loc>
            <lastmod>2022-10-22T22:04:43+08:00</lastmod>
        </sitemap>
    </sitemapindex>'''
    
    # 解析XML
    root = ET.fromstring(content)
    
    # 判断是否为sitemapindex类型
    if root.tag == '{http://www.sitemaps.org/schemas/sitemap/0.9}sitemapindex':
        # 获取所有子元素sitemap
        sitemaps = root.findall('{http://www.sitemaps.org/schemas/sitemap/0.9}sitemap')
        
        # 遍历获取loc和lastmod值
        for sitemap in sitemaps:
            loc = sitemap.find('{http://www.sitemaps.org/schemas/sitemap/0.9}loc').text
            lastmod = sitemap.find('{http://www.sitemaps.org/schemas/sitemap/0.9}lastmod').text
            
            # 打印测试
            print('loc:', loc)
            print('lastmod:', lastmod)
    else:
        print('不是sitemapindex类型')
    

    输出的结果为:

    loc: https://www.u9seo.com/post-sitemap1.xml
    lastmod: 2022-10-22T22:04:43+08:00
    

    可以看到成功解析初其中的loc和lastmod参数。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 3月17日
  • 已采纳回答 3月9日
  • 创建了问题 3月9日

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改