class InitSpider(Spider):
Method | init_request |
No summary |
Method | initialized |
This method must be set as the callback of your last initialization request. See self.init_request() docstring for more info. |
Method | start_requests |
Undocumented |
Instance Variable | _postinit_reqs |
Undocumented |
This function should return one initialization request, with the self.initialized method as callback. When the self.initialized method is called this spider is considered initialized. If you need to perform several requests for initializing your spider, you can do so by using different callbacks. The only requirement is that the final callback (of the last initialization request) must be self.initialized.
The default implementation calls self.initialized immediately, and means that no initialization is needed. This method should be overridden only when you need to perform requests to initialize your spider