Skip to content Skip to sidebar Skip to footer

Just Installed Beautifulsoup Python 3.3.0

Does anyone know how to fix it. I am using Mac OS 10.8.2 >>> from bs4 import BeautifulSoup Traceback (most recent call last): File '', line 1, in

Solution 1:

In Python 3 print is a function; it should be:

print(soup.prettify())

Install bs4 correctly or use a newer version if it is a bug. beautifulsoup4==4.1.3 works fine on Python 3.3.

Solution 2:

https://github.com/il-vladislav/BeautifulSoup4 Just copy this to Lib directory. It is fixed version for Python 3.3

Solution 3:

Beautiful Soup 4 works on both Python 2 (2.6+) and Python 3.

Beautiful Soup is licensed under the MIT license, so you can also download the tarball, drop the bs4/ directory into almost any Python application (or into your library path) and start using it immediately. If you want to do this under Python 3, you will need to manually convert the code using 2to3.

http://www.crummy.com/software/BeautifulSoup/

use python ../python33/Tools/Script/2to3.py -w beautifulsoup4-4.3.2 is be ok

Post a Comment for "Just Installed Beautifulsoup Python 3.3.0"