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日

悬赏问题

  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示