- trying to separate quote context

This commit is contained in:
Edwin O Marshall 2014-03-06 17:53:16 -05:00
parent aa1ab8dee0
commit 9f0e9e0e66
1 changed files with 8 additions and 0 deletions

View File

@ -22,16 +22,24 @@ XPath Selectors documentation] says (bolding by me):
"When youre scraping web pages, the most common task you need to perform is
to **extract** data from the HTML source."
..
"Scrapy comes with its own mechanism for **extracting** data. Theyre called
``XPath`` selectors (or just “selectors”, for short) because they “select”
certain parts of the HTML document specified by ``XPath`` expressions."
..
"To actually **extract** the textual data you must call the selector
``extract()`` method, as follows"
..
"Selectors also have a ``re()`` method for **extracting** data using regular
expressions."
..
"For example, suppose you want to **extract** all <p> elements inside <div>
elements. First you get would get all <div> elements"