Return an instance of the class for the given settings
(settings)
| 5 | |
| 6 | class ISpiderLoader(Interface): |
| 7 | def from_settings(settings): |
| 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 |
no outgoing calls