mirror of https://github.com/scrapy/scrapy.git
30 lines
699 B
Python
30 lines
699 B
Python
from twisted.internet.task import react
|
|
|
|
from scrapy import Spider
|
|
from scrapy.crawler import CrawlerRunner
|
|
from scrapy.utils.log import configure_logging
|
|
from scrapy.utils.reactor import install_reactor
|
|
|
|
|
|
class NoRequestsSpider(Spider):
|
|
name = "no_request"
|
|
|
|
custom_settings = {
|
|
"TWISTED_REACTOR": "twisted.internet.asyncioreactor.AsyncioSelectorReactor",
|
|
"ASYNCIO_EVENT_LOOP": "uvloop.Loop",
|
|
}
|
|
|
|
async def start(self):
|
|
return
|
|
yield
|
|
|
|
|
|
def main(reactor):
|
|
configure_logging()
|
|
runner = CrawlerRunner()
|
|
return runner.crawl(NoRequestsSpider)
|
|
|
|
|
|
install_reactor("twisted.internet.asyncioreactor.AsyncioSelectorReactor", "uvloop.Loop")
|
|
react(main)
|