I can read all xmls files that starts with but I can not read the files starts with
Coincidentally I stumbled upon another workaround. Read the file in binary mode ('rb'):
'rb'
with open('tests/xml-iso.xml', 'rb') as f_in: xml_soup = Soup(f_in.read(), 'xml')