Return the Spider class for the given spider name. If the spider name is not found, it must raise a KeyError.
(spider_name)
| 8 | """Return an instance of the class for the given settings""" |
| 9 | |
| 10 | def load(spider_name): |
| 11 | """Return the Spider class for the given spider name. If the spider |
| 12 | name is not found, it must raise a KeyError.""" |
| 13 | |
| 14 | def list(): |
| 15 | """Return a list with the names of all spiders available in the |
no outgoing calls