From 2489f84d3927fc294fa60f0efa6f2b9c886543b7 Mon Sep 17 00:00:00 2001 From: Kenneth Schnall Date: Tue, 12 Jul 2016 15:34:50 -0400 Subject: [PATCH] Update practices.rst --- docs/topics/practices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/practices.rst b/docs/topics/practices.rst index 5d40c745d..7dae68470 100644 --- a/docs/topics/practices.rst +++ b/docs/topics/practices.rst @@ -18,7 +18,7 @@ the typical way of running Scrapy via ``scrapy crawl``. Remember that Scrapy is built on top of the Twisted asynchronous networking library, so you need to run it inside the Twisted reactor. -First utility you can use to run your spiders is +The first utility you can use to run your spiders is :class:`scrapy.crawler.CrawlerProcess`. This class will start a Twisted reactor for you, configuring the logging and setting shutdown handlers. This class is the one used by all Scrapy commands.