Commit c406f953 authored by Renán Sosa Guillen's avatar Renán Sosa Guillen

merge with dev

parents a16827a4 24040d75
...@@ -49,7 +49,7 @@ class QuotesSpider(scrapy.Spider): ...@@ -49,7 +49,7 @@ class QuotesSpider(scrapy.Spider):
text = '' text = ''
# La fecha obtenida ya incluye formato y zona horaria # La fecha obtenida ya incluye formato y zona horaria
item['date'] = response.xpath('//time[@itemprop="datePublished"]/@datetime').extract_first() item['date'] = response.css('div.vw-post-meta-inner > a.vw-post-date > time::attr(datetime)').extract_first()
item['title'] = remove_tags(response.xpath('//h1[@class="entry-title"]').extract_first()) item['title'] = remove_tags(response.xpath('//h1[@class="entry-title"]').extract_first())
try: try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment