Tagged Questions

A Web crawler is a computer program that browses the World Wide Web in a methodical, automated manner or in an orderly fashion. Other terms for Web crawlers are ants, automatic indexers, bots, Web spiders, Web robots, or—especially in the FOAF community—Web scutters.

learn more… | top users | synonyms (3)

45
votes
8answers
23k views

Anyone know of a good Python based web crawler that I could use?

I'm half-tempted to write my own, but I don't really have enough time right now. I've seen the Wikipedia list of open source crawlers but I'd prefer something written in Python. I realize that I ...
39
votes
10answers
4k views

Detecting 'stealth' web-crawlers

What options are there to detect web-crawlers that do not want to be detected? (I know that listing detection techniques will allow the smart stealth-crawler programmer to make a better spider, but I ...
20
votes
9answers
874 views

Language/libraries for downloading & parsing web pages?

What language and libraries are suitable for a script to parse and download small numbers of web resources? For example, some websites publish pseudo-podcasts, but not as proper RSS feeds; they just ...
13
votes
6answers
5k views

Recommendations for a spidering tool to use with Lucene or Solr?

What is a good crawler (spider) to use against HTML and XML documents (local or web-based) and that works well in the Lucene / Solr solution space? Could be Java-based but does not have to be.
12
votes
5answers
590 views

What techniques can be used to detect so called “black holes” (a spider trap) when creating a web crawler?

When creating a web crawler, you have to design somekind of system that gathers links and add them to a queue. Some, if not most, of these links will be dynamic, which appear to be different, but do ...
11
votes
6answers
7k views

What is a good Java web crawler library?

I am about to develop a crawler in Java but don't feel like reinventing the wheel. A quick Google search gives a whole bunch of Java libraries to build a web crawler. Besides that Nutch is of course a ...
11
votes
6answers
761 views

guide on crawling the entire web?

i just had this thought, and was wondering if it's possible to crawl the entire web (just like the big boys!) on a single dedicated server (like Core2Duo, 8gig ram, 750gb disk 100mbps) . I've come ...
11
votes
4answers
7k views

Facebook crawler?

I'm a graduate student whose research is complex network. I am working on a project that involves analyzing connections between Facebook users. Is it possible to write a crawler for Facebook based on ...
9
votes
4answers
163 views

Is there a hashing algorithm that is tolerant of minor differences?

I'm doing some web crawling type stuff where I'm looking for certain terms in webpages and finding their location on the page, and then caching it for later use. I'd like to be able to check the page ...
9
votes
4answers
564 views

How can I handle Javascript in a Perl web crawler?

I would like to crawl a website, the problem is, that its full of JavaScript things, such as buttons and such that when they are pressed, they do not change the URL, but the data on the page is ...
8
votes
3answers
217 views

Determine context/meaning of a web page (or paragraph of text)

Of course Google has been doing this for years! However, rather than start from scratch, spend 10 years+ and squander large sums of money :) I was wondering if anyone knows of a simple PHP library ...
8
votes
1answer
737 views

Good Free/Paid Web Scraping Library in C#.NET which handles javascripts

I am looking for a good paid/free web scraping library with .NET support which has decent support for JavaScript processing and offers very good performance. It should have its own browser engine and ...
8
votes
4answers
4k views

Web crawler that can interpret javascript

I want to write a web crawler that can interpret JavaScript. Basically its a program in Java or PHP that takes a URL as input and outputs the DOM tree which is similar to the output in Firebug HTML ...
8
votes
6answers
7k views

C# HTTPWebResponse + StreamReader Very Slow!

I'm trying to implement a limited web crawler in C# (for a few hundred sites only) using HttpWebResponse.GetResponse() and Streamreader.ReadToEnd() , also tried using StreamReader.Read() and a loop to ...
8
votes
10answers
1k views

Crawling The Internet

I want to crawl for specific things. Specifically events that are taking place like concerts, movies, art gallery openings, etc, etc. Anything that one might spend time going to. How do I implement a ...
7
votes
4answers
2k views

how do web crawlers handle javascript

Today a lot of content on Internet is generated using JavaScript (specifically by background AJAX calls). I was wondering how web crawlers like Google handle them. Are they aware of JavaScript? Do ...
7
votes
9answers
1k views

Automated link-checker for system testing

I often have to work with fragile legacy websites that break in unexpected ways when logic or configuration are updated. I don't have the time or knowledge of the system needed to create a Selenium ...
6
votes
3answers
157 views

How do I check if a URL has a link on botw.org or not?

I am developing an application in which I have to check whether a link exists on botw.org for a given URL. Is there any free API available to check botw.org, or any other source to check this? ...
6
votes
1answer
400 views

Noob question about DOMDocument in php

Hi I'm just starting reading documentation adn examples about DOM, for crawling and parsing, I'm used to do this with get_content, but it's time to change =D for a new project. I have a div, like ...
6
votes
3answers
589 views

Hows Mozenda Screen Scraper coded?

I want to know how is the Mozenda Screen Scraper coded? http://www.mozenda.com/screen-scraper I shows a browser where user can select the fields he wants to scrap and it creates a crawl script out ...
6
votes
2answers
878 views

Any Good Open Source Web Crawling Framework in C#

Iam building a shopping comparison engine and I need to build a crawling engine to perform the daily data collection process. I have decided to build the crawler in C#. I have a lot of bad experience ...
6
votes
5answers
2k views

Alternative to HtmlUnit

I have been researching about the headless browsers available till to date and found HtmlUnit being used pretty extensively. Do we have any alternative to HtmlUnit with possible advantage compared to ...
6
votes
4answers
2k views

Using one Scrapy spider for several websites

I need to create a user configurable web spider/crawler, and I'm thinking about using Scrapy. But, I can't hard-code the domains and allowed URL regex:es -- this will instead be configurable in a GUI. ...
6
votes
4answers
724 views

Does any open, simply extendible web crawler exists?

I search for a web crawler solution which can is mature enough and can be simply extended. I am interested in the following features... or possibility to extend the crawler to meet them: partly just ...
6
votes
4answers
7k views

Anybody knows a good extendable open source web-crawler?

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 ...
6
votes
7answers
3k views

What is the best language for a WebCrawler [closed]

I would like to know what is the best language for a lightweight and fast web crawler. Is it better to do it in C99, C++ or any other language?
6
votes
3answers
759 views

HttpBrowserCapabilities.Crawler property .NET

How does the HttpBrowserCapabilities.Crawler property (http://msdn.microsoft.com/en-us/library/aa332775(VS.71).aspx) work? I need to detect a partner's custom crawler and this property is returning ...
5
votes
1answer
199 views

Replay a Scrapy spider on stored data

I have started using Scrapy to scrape a few websites. If I later add a new field to my model or change my parsing functions, I'd like to be able to "replay" the downloaded raw data offline to scrape ...
5
votes
2answers
305 views

Click a Button in Scrapy

I'm using Scrapy to crawl a webpage. Some of the information I need only pops up when you click on a certain button (of course also appears in the HTML code after clicking). I found out that Scrapy ...
5
votes
3answers
118 views

Protecting website content from crawlers

The contents of a commerce website (ASP.NET MVC) are regularly crawled by the competition. These people are programmers and they use sophisticated methods to crawl the site so identifying them by IP ...
5
votes
6answers
482 views

Designing a web crawler

I have come across an interview question "If you were designing a web crawler, how would you avoid getting into infinite loops? " and I am trying to answer it. How does it all begin from the ...
5
votes
3answers
2k views

Web crawler in ruby

What is your recommendation of writing a web crawler in Ruby? Any lib better than mechanize?
5
votes
6answers
264 views

After doing HttpWebRequests for a while the result starts timing out

I have an application that spiders websites for information. It seems like after 20-45 minutes of creating HttpWebRequests a bunch of them return timeouts. One thing we do is attach a BindIPDelegate ...
5
votes
3answers
2k views

Scraping and web crawling framework, PHP

I know scrapy.org that is a fast high-level screen scraping and web crawling framework, used to crawl websites and extract structured data from their pages. I used it in some projects and it is very ...
5
votes
2answers
2k views

Crawling and Scraping iTunes App Store

I noticed that iTunes preview allows you to crawl and scrape pages via the http:// protocol. However, many of the links are trying to be opened in iTunes rather than the browser. For example, when you ...
5
votes
1answer
88 views

What should i know about search engine crawling?

I don't mean SEO things. What should i know. Such as Do engines run javascript? Do they use cookies? Will cookies carry across crawl sessions (say cookies from today and a craw next week or month). ...
5
votes
4answers
664 views

What's a good book about web crawling?

I'm searching for a good book which discusses the problems of developing a web-crawler in java. Not this typical "search engine optimization" books. What books can you recommend?
5
votes
2answers
4k views

Asp.net Request.Browser.Crawler - Dynamic Crawler List?

I learned Why Request.Browser.Crawler is Always False in C# (http://www.digcode.com/default.aspx?page=ed51cde3-d979-4daf-afae-fa6192562ea9&article=bc3a7a4f-f53e-4f88-8e9c-c9337f6c05a0). Does ...
5
votes
6answers
2k views

Can I block search crawlers for every site on an Apache web server?

I have somewhat of a staging server on the public internet running copies of the production code for a few websites. I'd really not like it if the staging sites get indexed. Is there a way I can ...
5
votes
5answers
1k views

How do you turn a dynamic site into a static site that can be demo'd from a CD?

I need to find a way to crawl one of our company's web applications and create a static site from it that can be burned to a cd and used by traveling sales people to demo the web site. The back end ...
5
votes
5answers
1k views

How to set up a robot.txt which only allows the default page of a site

Say I have a site on http://website.com. I would really like allowing bots to see the home page, but any other page need to blocked as it is pointless to spider. In other words http://website.com ...
4
votes
6answers
120 views

How to design a crawl bot?

I'm working on a little project to analyze the content on some sites I find interesting; this is a real DIY project that I'm doing for my entertainment/enlightenment, so I'd like to code as much of it ...
4
votes
4answers
84 views

Producer/consumer of a web crawler using queue with unknown size

I need to crawl parent web pages and its children web pages and I followed the producer/consumer concept from http://www.albahari.com/threading/part4.aspx#%5FWait%5Fand%5FPulse. Also, I used 5 threads ...
4
votes
2answers
117 views

What is the best Open Source Web Crawler Tool written in Java? [closed]

What is the best Open Source Web Crawler Tool, written in Java.
4
votes
1answer
120 views

Architecture - How to efficiently crawl the web with 10,000 machine?

Let’s pretend I have a network of 10,000 machines. I want to use all those machines to crawl the web as fast as possible. All pages should be downloaded only once. In addition there must be no single ...
4
votes
3answers
231 views

Fast internet crawler

I'd like to do perform data mining on a large scale. For this, I need a fast crawler. All I need is something to download a web page, extract links and follow them recursively, but without visiting ...
4
votes
5answers
304 views

How to design a customized Search Engine?

I want to design my own search engine application, where all the results are displayed to the user on one single page (from Google/Bing etc) unlike Google where it is displayed on different pages. ...
4
votes
2answers
334 views

Interview question: Honeypots and web crawlers

I was recently reading a book as prep for an interview and came across the following question: What will you do when your crawler runs into a honey pot that generates an infinite subgraph for you to ...
4
votes
3answers
132 views

What does it mean to say a web crawler is I/O bound and not CPU bound?

I've seen this in some answers on S/O where the point is made that the programming language doesn't matter as much for a crawler and so C++ is overkill vs say Python. Can someone please explain this ...
4
votes
2answers
491 views

What are some good Ruby-based web crawlers?

I am looking at writing my own, but I am wondering if there are any good web crawlers out there which are written in Ruby. Short of a full-blown web crawler, any gems that might be helpful in ...

1 2 3 4 5 16