mirror of https://github.com/scrapy/scrapy.git
25 lines
560 B
Python
25 lines
560 B
Python
import asyncio
|
|
|
|
from scrapy import Spider
|
|
from scrapy.crawler import AsyncCrawlerRunner
|
|
from scrapy.utils.log import configure_logging
|
|
from scrapy.utils.reactorless import is_reactorless
|
|
|
|
|
|
class NoRequestsSpider(Spider):
|
|
name = "no_request"
|
|
|
|
async def start(self):
|
|
self.logger.info(f"is_reactorless(): {is_reactorless()}")
|
|
return
|
|
yield
|
|
|
|
|
|
async def main() -> None:
|
|
configure_logging()
|
|
runner = AsyncCrawlerRunner(settings={"TWISTED_REACTOR_ENABLED": False})
|
|
await runner.crawl(NoRequestsSpider)
|
|
|
|
|
|
asyncio.run(main())
|