mirror of https://github.com/scrapy/scrapy.git
- didn't like the way blockquotes rendered
This commit is contained in:
parent
acff13d2b9
commit
3217d1d179
|
|
@ -19,52 +19,52 @@ Operations
|
||||||
Get list of available spiders
|
Get list of available spiders
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
GET /spiders/all
|
``GET /spiders/all``
|
||||||
|
|
||||||
Get list of closed spiders
|
Get list of closed spiders
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
GET /spiders/closed
|
``GET /spiders/closed``
|
||||||
|
|
||||||
Get list of scheduled spiders
|
Get list of scheduled spiders
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
GET /spiders/scheduled
|
``GET /spiders/scheduled``
|
||||||
|
|
||||||
.. note:: contains closed
|
.. note:: contains closed
|
||||||
|
|
||||||
Get list of running spiders
|
Get list of running spiders
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
GET /spiders/opened
|
``GET /spiders/opened``
|
||||||
|
|
||||||
- returns list of dicts containing spider ``id`` and ``domain_name``
|
- returns list of dicts containing spider ``id`` and ``domain_name``
|
||||||
|
|
||||||
Schedule spider
|
Schedule spider
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
POST /spiders
|
``POST /spiders``
|
||||||
|
|
||||||
- args: ``schedule=example.com``
|
- args: ``schedule=example.com``
|
||||||
|
|
||||||
Close spider
|
Close spider
|
||||||
------------
|
------------
|
||||||
|
|
||||||
POST /spider/1238/close
|
``POST /spider/1238/close``
|
||||||
|
|
||||||
Get global stats
|
Get global stats
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
GET /stats
|
``GET /stats``
|
||||||
|
|
||||||
.. note:: spider-specific not included
|
.. note:: spider-specific not included
|
||||||
|
|
||||||
Get spider-specific stats
|
Get spider-specific stats
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
GET /spider/1238/stats/
|
``GET /spider/1238/stats/``
|
||||||
|
|
||||||
Get engine status
|
Get engine status
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
GET /engine/status
|
``GET /engine/status``
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue