mirror of https://github.com/scrapy/scrapy.git
lxml is the new default selector backend. closes #120
This commit is contained in:
parent
30ddbf624e
commit
21e03729a3
|
|
@ -1,11 +1,11 @@
|
|||
"""
|
||||
XPath selectors
|
||||
|
||||
Two backends are currently available: libxml2 and lxml
|
||||
|
||||
To select the backend explicitly use the SELECTORS_BACKEND variable in your
|
||||
project. Otherwise, libxml2 will be tried first. If libxml2 is not available,
|
||||
lxml will be used.
|
||||
project settings.
|
||||
|
||||
Two backends are currently available: lxml (default) and libxml2.
|
||||
|
||||
"""
|
||||
|
||||
from scrapy.conf import settings
|
||||
|
|
|
|||
Loading…
Reference in New Issue