Hi,

I read a webpage via urllib2. The result of the 'read' call is of type
'str'. This string can be written to disc via
file('out.html' ,'w').write(htm l). Then I write the string into a Memofield
in an Access database, using adodbapi. If I read the text back I get a
unicode string, which can not written to disc via file(...) due to encoding
problems. How do I have to decode the unicode string to get my original...