django-xml is a python module which provides an abstraction to lxml’s XPath and XSLT functionality in a manner resembling django database models.
Installation
To install the latest stable release of django-xml, use pip or easy_install
pip install django-xml easy_install django-xml
For the latest development version, install from source with pip:
pip install -e git+git://github.com/theatlantic/django-xml#egg=django-xml
If the source is already checked out, install via setuptools:
python setup.py develop
Example
import math
from djxml import xmlmodels
class NumbersExample(xmlmodels.XmlModel):
class Meta:
extension_ns_uri = "urn:local:number-functions"
namespaces = {"fn": extension_ns_uri,}
all_numbers = xmlmodels.XPathIntegerListField("//num")
even_numbers = xmlmodels.XPathIntegerListField("//num[fn:is_even(.)]")
sqrt_numbers = xmlmodels.XPathFloatListField("fn:sqrt(//num)")
@xmlmodels.lxml_extension
def is_even(self, context, number_nodes):
numbers = [getattr(n, 'text', n) for n in number_nodes]
return all([bool(int(num) % 2 == 0) for num in numbers])
@xmlmodels.lxml_extension
def sqrt(self, context, number_nodes):
sqrts = []
for number_node in number_nodes:
number = getattr(number_node, 'text', number_node)
sqrts.append(repr(math.sqrt(int(number))))
return sqrts
def main():
numbers_xml = u"""
<numbers>
<num>1</num>
<num>2</num>
<num>3</num>
<num>4</num>
<num>5</num>
<num>6</num>
<num>7</num>
</numbers>"""
example = NumbersExample.create_from_string(numbers_xml)
print "all_numbers = %r" % example.all_numbers
print "even_numbers = %r" % example.even_numbers
print "sqrt_numbers = [%s]" % ', '.join(['%.3f' % n for n in example.sqrt_numbers])
# all_numbers = [1, 2, 3, 4, 5, 6, 7]
# even_numbers = [2, 4, 6]
# sqrt_numbers = [1.000, 1.414, 1.732, 2.000, 2.236, 2.449, 2.646]
if __name__ == '__main__':
main()
Advanced Example
An example of django-xml usage which includes XsltField and @lxml_extension methods can be found here.
API Documentation
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-xml-1.4.1.tar.gz.
File metadata
- Download URL: django-xml-1.4.1.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99ba409e2d15dcd77f11930a5e50e2b96ffcce9ab2cdfd18fa232c7dbbab5181
|
|
| MD5 |
74703887cb2764ebaa819474f43aca21
|
|
| BLAKE2b-256 |
4bfb8f1039e572cf7072d3a3ab0fec217b0cb3a4d5c248c7954b640acc12b243
|
File details
Details for the file django_xml-1.4.1-py2.py3-none-any.whl.
File metadata
- Download URL: django_xml-1.4.1-py2.py3-none-any.whl
- Upload date:
- Size: 29.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf5a2bfe7801d518af80040068c54a84672eedc6ccb7e39d8f1e2dae0bd53c11
|
|
| MD5 |
bdf49e68f9bbd23c4221b5eab0c0240a
|
|
| BLAKE2b-256 |
848490944d0f0a40d8e29b20136bed576ea6a95d9c8825da8a00d84c66f9878e
|