Hi,
I'm trying to parse an XML file with BeautifulSoup. In all tutorials on the net, the content of the xml is given like
xml = "<doc><tag1>Contents 1<tag2>Contents 2<tag1>Contents 3"
soup = BeautifulStoneSoup(xml)
but I want to give only xml file's path. In mechanize one can use get_data() method but it only works for html files. Any sugestions ?