I'm running python 2.7 on a mac. I have lxml (3.1.1) installed. I also downloaded and installed cssselector since it no longer comes with lxml
In my python file, I have the following
import lxml.etree
from lxml.cssselect import CSSSelector
When I run the python file (F5), there are no errors and I get my expected output.
But if I launch my app from Google App Engine (on the dev server), I get an error and the log file shows the following
File "/Library/Python/2.7/site-packages/lxml/cssselect.py", line 18, in <module>
raise ImportError('cssselect seems not to be installed. '
ImportError: cssselect seems not to be installed. See
http://packages.python.org/cssselect/I found this link
http://code.google.com/p/googleappengine/issues/detail?id=9136Anybody have a solution/work around?