...
soup = BeautifulSoup(html, "lxml")
File "/Library/Python/2.7/site-packages/bs4/__init__.py", line 152, in __init__
% ",".join(features))
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
Le uscite sopra sul mio terminale. Sono su Mac OS 10.7.x. Ho Python 2.7.1 e ho seguito questo tutorial per ottenere Beautiful Soup e lxml, che sono stati installati correttamente e funzionano con un file di test separato che si trova qui . Nello script Python che causa questo errore, ho incluso questa riga:
from pageCrawler import comparePages
E nel file pageCrawler ho incluso le seguenti due righe:
from bs4 import BeautifulSoup
from urllib2 import urlopen
Qualsiasi aiuto per capire qual è il problema e come risolverlo sarebbe molto apprezzato.
html
URL o l'HTML sono contenuti?