I get the following error for the list item below. I know I have to encode
it, but am unsure how or where to write that in. I am new to python and
have had good luck thus far. Any help is greatly apprecieated. I am not on
the list, so a response to me is appreciated.
UnicodeError: ASCII encoding error: ordinal not in range(128)
eainfo = doc.createEleme nt("eainfo")
metadata.append Child(eainfo)
overview = doc.createEleme nt("overview")
eainfo.appendCh ild(overview)
eaover = doc.createEleme nt("eaover")
text = doc.createTextN ode(str(list[83]))
eaover.appendCh ild(text)
overview.append Child(eaover)
Casey Kohrt
GIS Librarian
Iowa Geological Survey
109 Trowbridge Hall
Iowa City, Iowa 52242
319-335-1353
[email protected] wa.edu
it, but am unsure how or where to write that in. I am new to python and
have had good luck thus far. Any help is greatly apprecieated. I am not on
the list, so a response to me is appreciated.
UnicodeError: ASCII encoding error: ordinal not in range(128)
eainfo = doc.createEleme nt("eainfo")
metadata.append Child(eainfo)
overview = doc.createEleme nt("overview")
eainfo.appendCh ild(overview)
eaover = doc.createEleme nt("eaover")
text = doc.createTextN ode(str(list[83]))
eaover.appendCh ild(text)
overview.append Child(eaover)
Casey Kohrt
GIS Librarian
Iowa Geological Survey
109 Trowbridge Hall
Iowa City, Iowa 52242
319-335-1353
[email protected] wa.edu
Comment