Use https link
1 |
"""
|
|
2 |
Parsel lets you extract text from XML/HTML documents using XPath
|
|
3 |
or CSS selectors
|
|
4 |
"""
|
|
5 |
|
|
6 |
__author__ = 'Scrapy project' |
|
7 |
__email__ = 'info@scrapy.org' |
|
8 |
__version__ = '1.6.0' |
|
9 |
|
|
10 |
from parsel.selector import Selector, SelectorList # NOQA |
|
11 |
from parsel.csstranslator import css2xpath # NOQA |
|
12 |
from parsel import xpathfuncs # NOQA |
|
13 |
|
|
14 |
xpathfuncs.setup() |
Read our documentation on viewing source code .