xml_str=douban.sitemap.xml DOMTree =xml.dom.minidom.parseString(xml_str) collection = DOMTree.documentElement elements=collection.getElementsByTagName("sitemap") for i in elements: a=i.getElementsByTagName("loc") print(a[0].childNodes[0].nodeValue)
## Json
1 2 3 4 5 6 7 8 9 10 11
map={} for i in range(0,3783): map[i]=0
with open("text\\sitemap_config.json","w") as f: json.dump(map,f)
map={} with open("text\\sitemap_config.json", 'r') as f: map = json.load(f) print(map)