Returns the next Link queued to visit (without removing it).
(self)
| 3158 | |
| 3159 | @property |
| 3160 | def next(self): |
| 3161 | """ Returns the next Link queued to visit (without removing it). |
| 3162 | """ |
| 3163 | return self.pop(remove=False) |
| 3164 | |
| 3165 | def crawl(self, method=DEPTH, **kwargs): |
| 3166 | """ Visits the next link in Crawler._queue. |