ptyhon实现sitemap生成示例
# _*_ 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>https://www.jb51.net/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()
上一篇:使用Django搭建web服务器的例子(最最正确的方式)
栏 目:Python代码
本文标题:ptyhon实现sitemap生成示例
本文地址:http://www.codeinn.net/misctech/137467.html






