0
votes
4answers
380 views
How can I make this recursive crawl function iterative?
For academic and performance sake, given this crawl recursive web-crawling function (which crawls only within the given domain) what would be the best approach to make it run iteratively? Currently …
2
votes
How can I make this recursive crawl function iterative?
@Mehrdad - Thank you for your reply, the example you provided was concise and easy to understand.
The solution:
def crawl(self, url):
urls = Queue(-1)
_crawled = [ …
