An XML marshalling and demartialling library
Project description
GeneralMarshall is a package for manipulating XML. It is comprised of an abstract class that should be subclassed for usage.
License
GeneralMarshall is released under the GNU Greater Public License. Feel free to reuse or distribute it in any way you see fit. I would appreciate being notified if you use the library and/or have any feature requests or suggestions.
Usage
The class makes extensive use of an overriden __getattr__ and __setattr__ in order to allow XML tag values to be set with a pythonic programming interface. In order to make this possible, the XML file’s tag heirarchy must be defined in the subclass that implements GeneralMarshall. This is done by setting the private class attributes _namespace, _root_name, _unique_tags, _unique_tag_attributes and _tag_hierarchy.
When the subclass knows the possible structure of XML files it should use, the interaction can look like this:
import general_marshall class MyXML(general_marshall.XML): ... # Load XML file xml_object = MyXML("file_name.xml") # Print pretty printed XML to stdout print(xml_object) # Create empty XML object new_xml = MyXML() # Set a tag value, creating parent nodes if necessary new_xml.value = "something" # Export to file new_xml.export("output_file.xml")
Although lxml is used to interface with the XML file that is either read or created, not all of the functions that GeneralMarshall would profit from lxml most are used in order to maintain compatibility with Python’s builtin xml library. This is due to the fact that GeneralMarshall is used in some places where lxml is not available.
Versioning
Version numbers are set using Semantic Versioning.
Project details
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 GeneralMarshall-v1.0.3.tar.gz
.
File metadata
- Download URL: GeneralMarshall-v1.0.3.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 924fcd0dd0bae7b16ca86f72499cafa3a3886ba11a3f872b451e12be469c3316 |
|
MD5 | 74f0f214c7c8cbfcb694043358c06c66 |
|
BLAKE2b-256 | c709d040702b5141a976a50a39c03e7307d37bed38a2cde0c668f6ff048b7ce7 |