python - script - Importación y uso de BeautifulSoup para la aplicación web
web scraping python examples (0)
Actualmente estoy tratando de usar BeautifulSoup para una aplicación web y he instalado el huevo beautifulsoup4 en un directorio local con easy_install --install-dir=PATH_TO_DIR beautifulsoup4
, pero cuando ejecuto mi aplicación me easy_install --install-dir=PATH_TO_DIR beautifulsoup4
el error actual que no hago. No sé qué hacer con:
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
¡Agradecería enormemente cualquier ayuda!
Tenga en cuenta que estoy importando el módulo en mi script python con:
egg_path=''/home/ryanefoley/py_libs/beautifulsoup4-4.3.2-py2.6.egg''
sys.path.append(egg_path)
from bs4 import BeautifulSoup