mirror of https://github.com/scrapy/scrapy.git
32 lines
792 B
Python
32 lines
792 B
Python
from twisted.internet.task import react
|
|
|
|
from scrapy import Spider
|
|
from scrapy.crawler import AsyncCrawlerRunner
|
|
from scrapy.utils.defer import deferred_f_from_coro_f
|
|
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
|
|
|
|
|
|
@deferred_f_from_coro_f
|
|
async def main(reactor):
|
|
configure_logging()
|
|
runner = AsyncCrawlerRunner()
|
|
await runner.crawl(NoRequestsSpider)
|
|
|
|
|
|
install_reactor("twisted.internet.asyncioreactor.AsyncioSelectorReactor", "uvloop.Loop")
|
|
react(main)
|