這篇文章將為大家詳細講解有關python如何提取xml里面的鏈接,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
代碼:
#coding=utf-8 import urllib import urllib.request import re url='http://zhimo.yuanzhumuban.cc/sitemaps.xml' html=urllib.request.urlopen(url).read() html=html.decode('utf-8') r=re.compile(r'(http://zhimo.yuanzhumuban.cc.*?\.html)') big=re.findall(r,html) for i in big: print(i) op_xml_txt=open('xml.txt','a') op_xml_txt.write('%s\n'%i)
擴展閱讀:
Python3提取xml文件中的內容
import xml.dom.minidom def find_child(Par_nodes, mystr): for child_node in Par_nodes: if(len(child_node.childNodes) > 0): mystr = find_child(child_node.childNodes, mystr) elif(child_node.nodeValue != None): mystr += child_node.data.replace('\n', '') return mystr if __name__ == '__main__': dom1 = xml.dom.minidom.parse('2.XML') #打開xml文件 root = dom1.documentElement #得到文檔元素對象 app_nums = root.getElementsByTagName('base:DocNumber') #按標簽名稱查找,返回標簽結點數組 app_num = app_nums[2] print('專利申請號:'+app_num.firstChild.data) titles = root.getElementsByTagName('business:InventionTitle') title = titles[0] print('專利名稱:'+title.firstChild.data) Paragraphs = root.getElementsByTagName('base:Paragraphs') abstract = Paragraphs[0] print('專利摘要:'+abstract.firstChild.data) company_names = root.getElementsByTagName('base:Name') company_name = company_names[0] print('公司名稱:'+company_name.firstChild.data) mystr = '' for i in range(len(Paragraphs)): if (Paragraphs[i].firstChild.data == '發明內容\n\t'): i+=1 while Paragraphs[i].firstChild.data != '附圖說明\n\t': mystr = find_child(Paragraphs[i].childNodes, mystr) i+=1 print('發明內容:' + mystr)
關于“python如何提取xml里面的鏈接”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。