這篇文章將為大家詳細講解有關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里面的鏈接”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
文章題目:python如何提取xml里面的鏈接-創新互聯
文章出自:http://www.yijiale78.com/article44/ddcgee.html
成都網站建設公司_創新互聯,為您提供網站制作、微信公眾號、網站維護、網頁設計公司、網站改版、網站設計公司
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯