Beautiful Soup works in the Python shell using Django. I can also successfully import from bs4 import BeautifulSoup into views.py, but when I call something like soup = BeautifulSoup(xml), I get a 502 Bad Gateway error. I talked to my host, and they could not find the problem. Any ideas?
Note the xml is xml = urllib2.urlopen("http://isbndb.com/api/books.xml?access_key=000000&results=details&index1=isbn&value1=0000").read(), but it works in the Python shell (within myproject folder), so I wouldn't think that's the problem.
soup = BeautifulSoup(xml)in my shell but when I call it fromviews.pyI get the 502 bad gateway. If I comment it out, I don't get the 502 bad gateway.from bs4 import Beautiful Soupworks in both views.py and in the shell though. – AAA Apr 19 '12 at 23:12