import urllib
from urllib.request import urlopen
import xml.etree.ElementTree as etree
response = urllib.request.urlopen("http://regnskaber.virk.dk/32673592/eGJybHN0b3JlOi8vWC1GNzY5MUY0Ny0yMDE0MDMyOV8xMzQxNThfMTc5L3hicmw.xml")
print (response.getcode())
print (response.readline()) # it gets the first line if you need to the check the output
Please help on how to fix this encoding problem.I need to parse XML content.