导入和使用BeautifulSoup for Web App

时间:2013-10-31 22:57:06

标签: python beautifulsoup web-deployment

我目前正在尝试使用BeautifulSoup作为Web应用程序,我已经在easy_install --install-dir=PATH_TO_DIR beautifulsoup4的本地目录中安装了beautifulsoup4 egg,但是当我运行我的应用程序时,我得到的是当前错误,我没有知道该怎么做:

Traceback (most recent call last): 
  from bs4 import BeautifulSoup
File "/home/ryanefoley/py_libs/beautifulsoup4-4.3.2-py2.6.egg/bs4/__init__.py", line 186
  if ((isinstance(markup, bytes) and not b' ' in markup)
                                            ^
SyntaxError: invalid syntax

我非常感谢任何帮助!

注意,我在python脚本中导入模块:

egg_path='/home/ryanefoley/py_libs/beautifulsoup4-4.3.2-py2.6.egg'
sys.path.append(egg_path)
from bs4 import BeautifulSoup

0 个答案:

没有答案