Bottom-up transformation of XML into python generators, XML, JSON or text.
Project description
This library does a bottom-up transformation of XML documents, extracting the parts that are relevant for the task at hand, and either returning it as a python generator, or serializing it to disk as XML (again!), JSON or text.
One design goal is to be able to process gigabyte-sized documents with constant memory footprint.
Inspired by the Haskell libraries Scrap Your Boilerplate, uniplate and geniplate.
Example, get the texts from all <p> tags in a document:
from xmldestroyer import xd import sys def p(text, _attrs, _children, _parents): return text infile, outfile = sys.args xd(infile, outfile, p=p)
This outputs a text file with the text from all <p> tags, one per line.
Works with python 2.7, 3.3, 3.4 and 3.5.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file xmldestroyer-0.2.tar.gz
.
File metadata
- Download URL: xmldestroyer-0.2.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
71c5003a61d57a77981750fefe533b3e4437e580fb88b2a620d1e53a07285a63
|
|
MD5 |
13440d7dffbf5281c041285983e5267e
|
|
BLAKE2b-256 |
ad3faddd758f341f512a19c2f60baa240ef2a89747212fd4614f505af9babdc6
|