首页 > 编程 > Python > 正文

ptyhon实现sitemap生成示例

2019-11-25 18:28:17
字体:
来源:转载
供稿:网友

复制代码 代码如下:

# _*_ coding:utf-8 _*_

#xiaohei.python.seo.call.me:)
#win+python2.7.x

id_ = 1
f = open('clubpop%s.xml' % id_, 'w')

for i, line in enumerate(open('suk.csv')):
        if i % 50000==0:
                print i
                f.write('<?xml version="1.0" encoding="UTF-8"?>/n<urlset>/n')

        f.write('''     <url>
                <loc>//www.VeVB.COm/review/%s-1-1.html</loc>
        </url>
''' % line.rstrip())
        if i % 50000==49999:
                f.write('</urlset>')
                f.close()
                id_ += 1
                f = open('clubpop%s.xml' % id_, 'w')
f.write('</urlset>')
f.close()

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表