minidom xml & non ascii / unicode & files

2005-08-05 Thread webdev
lo all,

some of the questions i'll ask below have most certainly been discussed 
already, i just hope someone's kind enough to answer them again to help 
me out..

so i started a python 2.3 script that grabs some web pages from the web, 
regex parse the data and stores it localy to xml file for further use..

at first i had no problem using python minidom and everything concerning 
my regex/xml processing works fine, until i tested my tool on some 
french page with "non ascii" chars and my script started to throw errors 
all over the place..

I've looked into the matter and discovered the unicode / string encoding 
processes implied when dealing with non ascii texts and i must say i 
almost lost my mind.. I'm loosing it actually..

so here are the few questions i'd like to have answers for :

1. when fetching a web page from the net, how am i supposed to know how 
it's encoded.. And can i decode it to unicode and encode it back to a 
byte string so i can use it in my code, with the charsets i want, like 
utf-8.. ?

2. in the same idea could anyone try to post the few lines that would 
actually parse an xml file, with non ascii chars, with minidom 
(parseString i guess).
Then convert a string grabbed from the net so parts of it can be 
inserted in that dom object into new nodes or existing nodes.
And finally write that dom object back to a file in a way it can be used 
again later with the same script..

I've been trying to do that for a few days with no luck..
I can do each separate part of the job, not that i'm quite sure how i 
decode/encode stuff in there, but as soon as i try to do everything at 
the same time i get encoding errors thrown all the time..

3. in order to help me understand what's going on when doing 
encodes/decodes could you please tell me if in the following example, s 
and backToBytes are actually the same thing ??

s = "hello normal string"
u = unicode( s, "utf-8" )
backToBytes = u.encode( "utf-8" )

i knwo they both are bytestrings but i doubt they have actually the same 
content..

4. I've also tried to set the default encoding of python for my script 
using the sys.setdefaultencoding('utf-8') but it keeps telling me that 
this module does not have that method.. i'm left no choice but to edit 
the site.py file manually to change "ascii" to "utf-8", but i won't be 
able to do that on the client computers so..
Anyways i don't know if it would help my script at all..

any help will be greatly appreciated
thx

Marc
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: minidom xml & non ascii / unicode & files

2005-08-06 Thread webdev
 read about it..

so passing the unicode object from my regex matches to minidom elements 
will make minidom behave nicely..

If you start to pass encoded bytestrings to minidom elements it may fail 
  when you call "toxml()".. I know i managed to do that once or twice i 
don't remember exactly what kind of bytestrings i passed to the minidom 
element but one thing's for sure it made "toxml()" fail whatever 
encoding you specify..

So if you stick to unicode, it will then encode all that unicode content 
to whatever encoding you've specified when calling 
"dom.toxml(encoding="utf-8")"
then you just have to store the output of that as it is without any 
further encoding

As a matter of fact using the following sequence will most certainly fail :
f = codecs.open('utf8codecs.xml', 'w', 'utf-8')
f.write(dom.toxml(encoding="utf-8"))
f.close()

then again maybe this will work, i just thought of it..
f = codecs.open('utf8codecs.xml', 'w', 'utf-8')
f.write(dom.toxml())
f.close()


I didn't understand at first that once you're using unicode object and 
as long as you've properly decoded your bytestring source, then unicode 
is unicode and you can forget about encodings "ascii", "iso-", "utf-"..

The next important thing is to make sure to use functions and objects 
that support unicode all the way, like minidom seems to do..


my original script has another function "FindDataNode" that will do a 
more sofisticated loop, into the dom object you provide, in order to 
check if there's already a node with the same title, and i use there 
some .lower() methods and a another "Sanitize" function that replaces a 
few chars.. So i guess i'll have to make sure that none of those 
manipulations converts my unicode obect back to bytestrings..


Thx for reading, let me know if you see really really weird (bad?) 
things in my code, or if you have further comments to add on the unicode 
topic..

Marc




Martin v. Löwis wrote:
> webdev wrote:
> 
>>1. when fetching a web page from the net, how am i supposed to know how
>>it's encoded.. And can i decode it to unicode and encode it back to a
>>byte string so i can use it in my code, with the charsets i want, like
>>utf-8.. ?
> 
> 
> It depends on the content type. If the HTTP header declares a charset=
> attribute for content-type, then use that (beware: some web servers
> report the content type incorrectly. To deal with that gracefully,
> you have to implement very complex algorithms, which are part of
> any recent web browser).
> 
> If there is no charset= attribute, then
> - if the content type is text/html, look at a meta http-equiv tag
>   in the content. If that declares a charset, use that.
> - if the content type is xml (plain, or xhtml+xml), look at the
>   XML declaration. Alternatively, pass it to your XML parser.
> 
> 
>>2. in the same idea could anyone try to post the few lines that would
>>actually parse an xml file, with non ascii chars, with minidom
>>(parseString i guess).
> 
> 
> doc = xml.dom.minidom.parse("foo.xml")
> 
> 
>>Then convert a string grabbed from the net so parts of it can be
>>inserted in that dom object into new nodes or existing nodes.
> 
> 
> doc..documentElement.setAttribute("bar", text_from_net.decode("koi-8r"))
> 
> 
>>And finally write that dom object back to a file in a way it can be used
>>again later with the same script..
> 
> 
> open("/tmp/foo.txt","w").write(doc.toxml())
> 
> 
>>I've been trying to do that for a few days with no luck..
>>I can do each separate part of the job, not that i'm quite sure how i
>>decode/encode stuff in there, but as soon as i try to do everything at
>>the same time i get encoding errors thrown all the time..
> 
> 
> It would help if you would state what precise code you are using,
> and what precise error you are getting (for what precise input).
> 
> 
>>3. in order to help me understand what's going on when doing
>>encodes/decodes could you please tell me if in the following example, s
>>and backToBytes are actually the same thing ??
>>
>>s = "hello normal string"
>>u = unicode( s, "utf-8" )
>>backToBytes = u.encode( "utf-8" )
>>
>>i knwo they both are bytestrings but i doubt they have actually the same
>>content..
> 
> 
> They do have the same content. There is nothing to a byte string except
> for the bytes. If the byte string is meant to represent characters,
> they are the same "thing" only if the assumed encoding is the same.
> Since the assumed encoding is "utf-8" for both s and backToBytes,
> they are the same thing.
> 
> 
>>4. I've also tried to set the default encoding of python for my script
>>using the sys.setdefaultencoding('utf-8') but it keeps telling me that
>>this module does not have that method.. i'm left no choice but to edit
>>the site.py file manually to change "ascii" to "utf-8", but i won't be
>>able to do that on the client computers so..
> 
> 
> Don't do that. It's meant as a last resort for backwards compatibility,
> and shouldn't be used for new code.
> 
> Regards,
> Martin
-- 
http://mail.python.org/mailman/listinfo/python-list