Can I use Python lxml on Google App Engine? (or do I have to use Beautiful Soup?)
I have started using Beautiful Soup but it seems slow. I am just starting to play with
To add to Caio's revised answer, you can use lxml and this is how to do it:
lxml
In your app.yaml file, add the following:
app.yaml
libraries: - name: lxml version: "2.3" # or "latest"
Now import lxml will work in your Python script.
import lxml
Here is the link to the official documentation.