Python Forum
Make a Web crawler without using the recursion method.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Make a Web crawler without using the recursion method.
#4
Crawling urls is only an example of a graph's breadth first traversal algorithm. You have a pseudo code in wikipedia which you can adapt to python by using a list as ichabod801 suggests, or a collections.deque instance, which makes it easy to implement a FIFO.
Reply


Messages In This Thread
RE: Make a Web crawler without using the recursion method. - by Gribouillis - Jul-06-2019, 09:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Web Crawler help Mr_Mafia 2 1,959 Apr-04-2020, 07:20 PM
Last Post: Mr_Mafia
  Web Crawler help takaa 39 27,788 Apr-26-2019, 12:14 PM
Last Post: stateitreal

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020