精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python3 XML 解析

python3 xml 解析

 

xml 指可擴展標記語言(extensible markup language),是一種用于標記電子文件使其具有結構性的標記語言。xml 通常被用來設計傳輸和存儲數據。

python 支持對 xml 的解析,常見的 xml 編程接口有 dom 和 sax,這兩種接口處理 xml 文件的方式不同,當然使用場合也不同。

1.sax (simple api for xml )

python 標準庫包含 sax 解析器,sax 用事件驅動模型,通過在解析 xml 的過程中觸發一個個的事件并調用用戶定義的回調函數來處理 xml 文件。

2.dom(document object model)

將 xml 數據在內存中解析成一個樹,通過對樹的操作來操作 xml。

本章節使用到的 xml 范例文件 movies.xml 內容如下:

<collection shelf="new arrivals"> <movie title="enemy behind">    <type>war, thriller</type>    <format>dvd</format>    <year>2003</year>    <rating>pg</rating>    <stars>10</stars>    <description>talk about a us-japan war</description> </movie> <movie title="transformers">    <type>anime, science fiction</type>    <format>dvd</format>    <year>1989</year>    <rating>r</rating>    <stars>8</stars>    <description>a schientific fiction</description> </movie>    <movie title="trigun">    <type>anime, action</type>    <format>dvd</format>    <episodes>4</episodes>    <rating>pg</rating>    <stars>10</stars>    <description>vash the stampede!</description> </movie> <movie title="ishtar">    <type>comedy</type>    <format>vhs</format>    <rating>pg</rating>    <stars>2</stars>    <description>viewable boredom</description> </movie> </collection> 

 

python 使用 sax 解析 xml

sax 是一種基于事件驅動的api。

利用 sax 解析 xml 文檔牽涉到兩個部分: 解析器和事件處理器。

解析器負責讀取 xml 文檔,并向事件處理器發送事件,如元素開始跟元素結束事件。

而事件處理器則負責對事件作出響應,對傳遞的 xml 數據進行處理。

  • 1、對大型文件進行處理;
  • 2、只需要文件的部分內容,或者只需從文件中得到特定信息。
  • 3、想建立自己的對象模型的時候。

在 python 中使用 sax 方式處理 xml 要先引入 xml.sax 中的 parse 函數,還有 xml.sax.handler 中的 contenthandler。

contenthandler 類方法介紹

characters(content) 方法

調用時機:

從行開始,遇到標簽之前,存在字符,content 的值為這些字符串。

從一個標簽,遇到下一個標簽之前, 存在字符,content 的值為這些字符串。

從一個標簽,遇到行結束符之前,存在字符,content 的值為這些字符串。

標簽可以是開始標簽,也可以是結束標簽。

startdocument() 方法

文檔啟動的時候調用。

enddocument() 方法

解析器到達文檔結尾時調用。

startelement(name, attrs) 方法

遇到xml開始標簽時調用,name 是標簽的名字,attrs 是標簽的屬性值字典。

endelement(name) 方法

遇到xml結束標簽時調用。

 

make_parser 方法

以下方法創建一個新的解析器對象并返回。

xml.sax.make_parser( [parser_list] )

參數說明:

  • parser_list - 可選參數,解析器列表

 

parser 方法

以下方法創建一個 sax 解析器并解析xml文檔:

xml.sax.parse( xmlfile, contenthandler[, errorhandler])

參數說明:

  • xmlfile - xml文件名
  • contenthandler - 必須是一個 contenthandler 的對象
  • errorhandler - 如果指定該參數,errorhandler 必須是一個 sax errorhandler 對象

 

<3>parsestring 方法

parsestring 方法創建一個 xml 解析器并解析 xml 字符串:

xml.sax.parsestring(xmlstring, contenthandler[, errorhandler])

參數說明:

  • xmlstring - xml字符串
  • contenthandler - 必須是一個 contenthandler 的對象
  • errorhandler - 如果指定該參數,errorhandler 必須是一個 sax errorhandler對象

 

python 解析xml范例

#!/usr/bin/python3

import xml.sax

class moviehandler( xml.sax.contenthandler ):
   def __init__(self):
      self.currentdata = ""
      self.type = ""
      self.format = ""
      self.year = ""
      self.rating = ""
      self.stars = ""
      self.description = ""

   # 元素開始調用
   def startelement(self, tag, attributes):
      self.currentdata = tag
      if tag == "movie":
         print ("*****movie*****")
         title = attributes["title"]
         print ("title:", title)

   # 元素結束調用
   def endelement(self, tag):
      if self.currentdata == "type":
         print ("type:", self.type)
      elif self.currentdata == "format":
         print ("format:", self.format)
      elif self.currentdata == "year":
         print ("year:", self.year)
      elif self.currentdata == "rating":
         print ("rating:", self.rating)
      elif self.currentdata == "stars":
         print ("stars:", self.stars)
      elif self.currentdata == "description":
         print ("description:", self.description)
      self.currentdata = ""

   # 讀取字符時調用
   def characters(self, content):
      if self.currentdata == "type":
         self.type = content
      elif self.currentdata == "format":
         self.format = content
      elif self.currentdata == "year":
         self.year = content
      elif self.currentdata == "rating":
         self.rating = content
      elif self.currentdata == "stars":
         self.stars = content
      elif self.currentdata == "description":
         self.description = content
  
if ( __name__ == "__main__"):
   
   # 創建一個 xmlreader
   parser = xml.sax.make_parser()
   # 關閉命名空間
   parser.setfeature(xml.sax.handler.feature_namespaces, 0)

   # 重寫 contexthandler
   handler = moviehandler()
   parser.setcontenthandler( handler )
   
   parser.parse("movies.xml")

以上代碼執行結果如下:

*****movie*****
title: enemy behind
type: war, thriller
format: dvd
year: 2003
rating: pg
stars: 10
description: talk about a us-japan war
*****movie*****
title: transformers
type: anime, science fiction
format: dvd
year: 1989
rating: r
stars: 8
description: a schientific fiction
*****movie*****
title: trigun
type: anime, action
format: dvd
rating: pg
stars: 10
description: vash the stampede!
*****movie*****
title: ishtar
type: comedy
format: vhs
rating: pg
stars: 2
description: viewable boredom

 

使用xml.dom解析xml

文件對象模型(document object model,簡稱dom),是w3c組織推薦的處理可擴展置標語言的標準編程接口。

一個 dom 的解析器在解析一個 xml 文檔時,一次性讀取整個文檔,把文檔中所有元素保存在內存中的一個樹結構里,之后你可以利用dom 提供的不同的函數來讀取或修改文檔的內容和結構,也可以把修改過的內容寫入xml文件。

python中用xml.dom.minidom來解析xml文件,范例如下:

#!/usr/bin/python3

from xml.dom.minidom import parse
import xml.dom.minidom

# 使用minidom解析器打開 xml 文檔
domtree = xml.dom.minidom.parse("movies.xml")
collection = domtree.documentelement
if collection.hasattribute("shelf"):
   print ("root element : %s" % collection.getattribute("shelf"))

# 在集合中獲取所有電影
movies = collection.getelementsbytagname("movie")

# 打印每部電影的詳細信息
for movie in movies:
   print ("*****movie*****")
   if movie.hasattribute("title"):
      print ("title: %s" % movie.getattribute("title"))

   type = movie.getelementsbytagname('type')[0]
   print ("type: %s" % type.childnodes[0].data)
   format = movie.getelementsbytagname('format')[0]
   print ("format: %s" % format.childnodes[0].data)
   rating = movie.getelementsbytagname('rating')[0]
   print ("rating: %s" % rating.childnodes[0].data)
   description = movie.getelementsbytagname('description')[0]
   print ("description: %s" % description.childnodes[0].data)

以上程序執行結果如下:

root element : new arrivals
*****movie*****
title: enemy behind
type: war, thriller
format: dvd
rating: pg
description: talk about a us-japan war
*****movie*****
title: transformers
type: anime, science fiction
format: dvd
rating: r
description: a schientific fiction
*****movie*****
title: trigun
type: anime, action
format: dvd
rating: pg
description: vash the stampede!
*****movie*****
title: ishtar
type: comedy
format: vhs
rating: pg
description: viewable boredom

下一節:python3 json 解析

python3 教程

相關文章