Kodi Community Forum

Full Version: website python directed to another site? :(
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
just look at the following page with python, and I says page does not exist?

looks directly in your browser, but another reading in python

>>> http://hizliseyretizle.com/gt/WVZjeGExcG5QVDA9.xml


python directed to another site, Do you have a solution



please help

I can't see a difference. Here my example Code:
Code:
from urllib2 import urlopen
url = 'http://hizliseyretizle.com/gt/WVZjeGExcG5QVDA9.xml'
out_file = 'content.xml'
with open(out_file, 'w') as f:
    f.write(urlopen(url).read())
It just downloads the file...