如何修复“ValueError at / search / read of closed file”?

时间:2014-11-19 07:14:53

标签: python django python-3.x urllib

昨晚我打开了自己"黑客"在https://www.pythonanywhere.com/pricing/上,因为"初学者"没有访问外部网站。但我仍然无法下载外部互联网网站。为什么? 这是我尝试下载网页的代码:

from urllib.request import FancyURLopener

    class MyOpener(FancyURLopener):
        version = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11'   # Set this to a string you want for your user agent
    p=MyOpener().open('http://www.booking.com/hotel/ua/boutique-hotel-kavalier.ru.html').read() 

此代码在本地运行。 这是我的申请: http://tauguard.pythonanywhere.com/search/?q=http://www.booking.com/hotel/ua/boutique-hotel-kavalier.ru.html

为什么它在服务器上不起作用?

0 个答案:

没有答案