Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
130 views

Printing Attribute Values in python-amara

I'm trying to parse an xml file with using python-amara. doc = amara.parse('h.xml') assert doc.xml_type == tree.entity.xml_type m = doc.xml_children[0] print m When I do this it gives ...
5
votes
2answers
550 views

How to validate an xml file against an XSD Schema using Amara library in Python?

High bounty for the following Q: Hello, Here is what I tried on Ubuntu 9.10 using Python 2.6, Amara2 (by the way, test.xsd was created using xml2xsd tool): g@spot:~$ cat test.xml; echo ...
1
vote
1answer
111 views

Switching from amara to lxml in Python

I am trying to accomplish with lxml library something like this: http://www.xml.com/pub/a/2005/01/19/amara.html from amara import binderytools container = binderytools.bind_file('labels.xml') for l ...
1
vote
1answer
127 views

amara and django

Hello I am trying to do webservice calls with django views using Amara library. However anytime I do import amara (by simply importing it!) and call a django view with it imported, I get such errors: ...
0
votes
0answers
9 views

amara for python2.4 and Fedora10

Please, could anyone point out a link to download the rpm file of a proper version on amara XML toolkit for python2.4 in Fedora10 distribtion?
0
votes
2answers
415 views

Python xpath not working?

Okay, this is starting to drive me a little bit nuts. I've tried several xml/xpath libraries for Python, and can't figure out a simple way to get a stinkin' "title" element. The latest attempt looks ...