Return a list with the names of all spiders available in the project.
(self)
| 127 | ] |
| 128 | |
| 129 | def list(self) -> list[str]: |
| 130 | """ |
| 131 | Return a list with the names of all spiders available in the project. |
| 132 | """ |
| 133 | return list(self._spiders.keys()) |
| 134 | |
| 135 | |
| 136 | @implementer(ISpiderLoader) |