8000 GitHub - jaytoday/python-simplexml: A simplistic take on SimpleXML for Python
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jaytoday/python-simplexml

 
 

Folders and files

NameName
Last commit message
La 8000 st commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

When I started working in Python I'd heard rumors that parsing XML was kind of a pain in the ass. Coming from PHP I had SimpleXML that worked perfectly fine for 99% of the XML parsing I had to do. When it finally came to needing to parse some simplistic XML documents I decided to write this small wrapper around ElementTree.

Usage

from kissxml import parse
xml = parse("person.xml")
print xml.name.first
print xml.name.last
print xml.name["origin"]

About

A simplistic take on SimpleXML for Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 97.0%
  • Makefile 3.0%
0