Re: Not necessarily related to python Web Crawlers

2008-07-06 Thread subeen
On Jul 5, 2:31 pm, [EMAIL PROTECTED] wrote: > Hi > Does anyone here have a good recommendation for an open source crawler > that I could get my hands on? It doesn't have to be python based. I am > interested in learning how crawling works. I think python based > crawlers will ensure a high degree o

Re: Not necessarily related to python Web Crawlers

2008-07-05 Thread defn noob
just crawling is supereasy. its how to index and search that is hard. just start at yahoo.com, scrape out all the links and then for every site visit every link. i wrote a crawler in 15 lines of code. but then it all it did was visit the sites, not indexing them or anything. you could write a fast

Not necessarily related to python Web Crawlers

2008-07-05 Thread disappearedng
Hi Does anyone here have a good recommendation for an open source crawler that I could get my hands on? It doesn't have to be python based. I am interested in learning how crawling works. I think python based crawlers will ensure a high degree of flexibility but at the same time I am also torn betw