I'm new to scrapy/python, could you please help me? I'm trying to get the name of each workshop in this website using scrapy, but still no result, so I cant't go beyond the tag. Here's my code:
import scrapy
class OffSpider(scrapy.Spider):
name = "offs"
start_urls = ['https://oficinasonline.com.br/oficinas/busca?state_id=26']
def parse(self, response):
for off in response.css('.workshop-list ul'):
yield {
'name': off.css('h4 ::text'),
}
Thanks.