What I'm trying to do is simple. Load am XML file using ElementTree so I can traverse it.
Here's the code:
_uri = '/news.xml'
self.root = ElementTree.parse(_uri).getroot()
And, the error:
file not accessible: '/news.xml'
From what I can tell, the parser can't find the document. Is there something I need to configure so python can see my site's files?