Beautiful Soup 使用 Django 在 Python shell 中工作。我也可以成功导入from bs4 import BeautifulSoup
views.py,但是当我调用类似的东西时soup = BeautifulSoup(xml)
,我得到一个502 Bad Gateway错误。我和我的主人谈过,他们找不到问题。有任何想法吗?
请注意 xml 是xml = urllib2.urlopen("http://isbndb.com/api/books.xml?access_key=000000&results=details&index1=isbn&value1=0000").read()
,但它可以在 Python shell(在 myproject 文件夹中)中工作,所以我认为这不是问题所在。