mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-25 04:43:51 +00:00
6 lines
176 B
Python
6 lines
176 B
Python
from twisted.application.service import Application
|
|
from scrapy.service import ScrapyService
|
|
|
|
application = Application("Scrapy")
|
|
ScrapyService().setServiceParent(application)
|