Skip to content Skip to sidebar Skip to footer

Which Version Of Beautifulsoup Works With Gae (python 2.5)?

When I write from BeautifulSoup import BeautifulSoup I am getting the following error: No module named BeautifulSoup All files are saved at project folder, subfolder BeautifulSo

Solution 1:

If you want to include BeautifulSoup from a subpackage (subdirectory), make sure that directory has a __init__.py file.

Afterwards from BeautifulSoup.BeautifulSoup import BeautifulSoup should work.

Post a Comment for "Which Version Of Beautifulsoup Works With Gae (python 2.5)?"