這篇文章將為大家詳細(xì)講解有關(guān)python如何提取xml里面的鏈接,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
代碼:
#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)
擴(kuò)展閱讀:
Python3提取xml文件中的內(nèi)容
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 #得到文檔元素對(duì)象 app_nums = root.getElementsByTagName('base:DocNumber') #按標(biāo)簽名稱查找,返回標(biāo)簽結(jié)點(diǎn)數(shù)組 app_num = app_nums[2] print('專利申請(qǐng)?zhí)枺?#39;+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 == '發(fā)明內(nèi)容\n\t'): i+=1 while Paragraphs[i].firstChild.data != '附圖說明\n\t': mystr = find_child(Paragraphs[i].childNodes, mystr) i+=1 print('發(fā)明內(nèi)容:' + mystr)
關(guān)于“python如何提取xml里面的鏈接”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
文章題目:python如何提取xml里面的鏈接-創(chuàng)新互聯(lián)
文章出自:http://www.rwnh.cn/article44/ddcgee.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、微信公眾號(hào)、網(wǎng)站維護(hù)、網(wǎng)頁設(shè)計(jì)公司、網(wǎng)站改版、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容