SimpleApiForXml http://sax.sourceinfo.new [[XML]] [[Parsing]]을 위한 간단한 인터페이스. callback-based, stream-based API. 사용예) {{{#!python from xml.sax.handler import ContentHandler class ArticleHandler(ContentHandler): """ A handler to deal with articles in XML """ inArticle = False inBody = False isMatch = False title = "" body = "" def startElement(self, name, attrs): if name == "webArticle": subcat = attrs.get("subcategory", "") if subcat.find("tech") > -1: self.inArticle = True self.isMatch = True elif self.inArticle: if name == "header": self.title = attrs.get("title","") if name == "body": self.inBody = True def characters(self, chars): if self.inBody: if len(self.body) < 80: self.body += chars if len(self.body) > 80: self.body = self.body[:78] + "..." self.inBody = False def endElement(self, name): if name == "body": self.inBody = False }}} article.xml {{{
Seattle, WA - Today an anonymous individual announced that NASA has completed building a Wrap Drive and has parked a ship that uses claims that although he hasn't been contacted by NASA concerning the parked space vessel, he assumes that he will be launching it later this week to mount an exhibition to the Andromeda Galaxy. }}}