The crawler needs to have an extendable architecture to allow changing the internal process, like implementing new steps (pre-parser, parser, etc...)

I found the Heritrix Project (http://crawler.archive.org/).

But there are other nice projects like that?

link|improve this question

@LFSR Consulting. They are for different purposes... – Zanoni Jun 24 '09 at 17:39
feedback

4 Answers

up vote 7 down vote accepted

Nutch is the best you can do when it comes to a free crawler. It is built off of the concept of Lucene (in an enterprise scaled manner) and is supported by the Hadoop back end using MapReduce (similar to Google) for large scale data querying. Great products! I am currently reading all about Hadoop in the new (not yet released) Hadoop in Action from manning. If you go this route I suggest getting onto their technical review team to get an early copy of this title!

These are all Java based. If you are a .net guy (like me!!) then you might be more interested in Lucene.NET, Nutch.NET, and Hadoop.NET which are all class by class and api by api ports to C#.

link|improve this answer
+1 for Nutch and Hadoop, you can also look at solr if you are looking for distributed and scalable solution. – Sumit Ghosh Aug 12 '10 at 12:06
2  
From the looks of it, Nutch.NET is completely non-existant and I couldn't even find a way to download it. – Mike Christensen Apr 12 '11 at 8:38
The same goes for Hadoop.NET, there isn't a single file for download – Xavier Poinas May 10 '11 at 3:26
feedback

You May also want to try Scrapy http://scrapy.org/

It is really easy to specify and run your crawlers.

link|improve this answer
feedback

I've discovered recently one called - Nutch.

link|improve this answer
feedback

If you're not tied down to platform, I've had very good experiences with Nutch in the past.

It's written in Java and goes hand in hand with the Lucene indexer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.