When I try to retrive information from google weather api with the followign url,
http://www.google.com/ig/api?weather=Munich,Germany&hl=de
and then try to parse it with minidom, I get error that the document is not well formed.
I use following code
sock = urllib.urlopen(url) # above mentioned url
doc = minidom.parse(sock)
I think the german characters in the response is the cause of the error.
What is the correct way of doing this ?