e-not.by
19.08.2025 05:01
Создание ÑайÑов и мобилÑнÑÑ
пÑиложений в ÐинÑке | Ðеб-ÑÑÑÐ´Ð¸Ñ E-NOT.by
title: e-not.by - The connection to the server timed out! description: e-not.by is not working at the moment. Try visiting the website later. ``` ## Answer (0) You can use the `scrapy.spiders.BaseSpider` class and extend it. In the `start_requests` method you can define how many requests you want to make. ``` class MySpider(scrapy.Spider): name = "myspider" def start_requests(self): self.request(self.url) self.request(self.url2) self.request(self.url3) ``` The urls are defined in the constructor. ``` class MySpider(scrapy.Spider):