Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #4156
| Date | 2011-04-27 21:33 +0200 |
|---|---|
| From | Hegedüs Ervin <airween@gmail.com> |
| Subject | Re: ElementTree XML parsing problem |
| References | <ip9n72$ol6$1@dont-email.me> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.906.1303932831.9059.python-list@python.org> (permalink) |
hello, > I'm using ElementTree to parse an XML file, but it stops at the > second record (id = 002), which contains a non-standard ascii > character, ä. Here's the XML: > > <?xml version="1.0"?> > <snapshot time="Mon Apr 25 08:47:23 PDT 2011"> > <records> > <record id="001" education="High School" employment="7 yrs" /> > <record id="002" education="Universität Bremen" employment="3 years" /> > <record id="003" education="River College" employment="5 yrs" /> > </records> > </snapshot> > > The complaint offered up by the parser is I've checked this xml with your script, I think your locales settings are not good. $ ./parse.py XML file: test.xml 001 High School 002 Universität Bremen 003 River College (name of xml file is "test.xml") So, I started change the codepage mark of xml: <?xml version="1.0" encoding="UTF-8" ?> - same result <?xml version="1.0" encoding="ISO-8859-2" ?> - same result <?xml version="1.0" encoding="ISO-8859-1" ?> - same result and then: <?xml version="1.0" encoding="ascii" ?> - gives same error as you described. Try to change XML encoding. a.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar
ElementTree XML parsing problem Mike <Mike@invalid.invalid> - 2011-04-27 11:26 -0700
Re: ElementTree XML parsing problem Benjamin Kaplan <benjamin.kaplan@case.edu> - 2011-04-27 14:41 -0400
Re: ElementTree XML parsing problem Neil Cerutti <neilc@norwich.edu> - 2011-04-27 19:24 +0000
Re: ElementTree XML parsing problem Mike <Mike@invalid.invalid> - 2011-04-27 13:43 -0700
Re: ElementTree XML parsing problem Philip Semanchuk <philip@semanchuk.com> - 2011-04-27 15:32 -0400
Re: ElementTree XML parsing problem Hegedüs Ervin <airween@gmail.com> - 2011-04-27 21:33 +0200
Re: ElementTree XML parsing problem Mike <Mike@invalid.invalid> - 2011-04-27 13:32 -0700
Re: ElementTree XML parsing problem Stefan Behnel <stefan_ml@behnel.de> - 2011-04-28 07:57 +0200
Re: ElementTree XML parsing problem Ervin Hegedüs <airween@gmail.com> - 2011-04-28 08:24 +0200
csiph-web