mirror of https://github.com/scrapy/scrapy.git
Merge pull request #4213 from dqwerter/patch-1
Update overview.rst | Fix an inconsistency
This commit is contained in:
commit
aaf94affee
|
|
@ -34,8 +34,8 @@ http://quotes.toscrape.com, following the pagination::
|
|||
def parse(self, response):
|
||||
for quote in response.css('div.quote'):
|
||||
yield {
|
||||
'text': quote.css('span.text::text').get(),
|
||||
'author': quote.xpath('span/small/text()').get(),
|
||||
'text': quote.css('span.text::text').get(),
|
||||
}
|
||||
|
||||
next_page = response.css('li.next a::attr("href")').get()
|
||||
|
|
|
|||
Loading…
Reference in New Issue