Tagged Questions

Synonym for web-crawler tag. Somebody please synonym it (I lack the rep in web-crawler tag)

learn more… | top users | synonyms

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

How to write a crawler?

I have had thoughts of trying to write a simple crawler that might crawl and produce a list of its findings for our NPO's websites and content. Does anybody have any thoughts on how to do this? Where ...
7
votes
5answers
576 views

Concurrent downloads - Python

the plan is this: I download a webpage, collect a list of images parsed in the DOM and then download these. After this I would iterate through the images in order to evaluate which image is best ...
7
votes
3answers
946 views

Scrapy SgmlLinkExtractor is ignoring allowed links

Please take a look at this spider example in Scrapy documentation. The explanation is: This spider would start crawling example.com’s home page, collecting category links, and item links, parsing ...
7
votes
14answers
3k views

best library to do web-scraping

I would like to get data from from different webpages such as addresses of restaurants or dates of different events for a given location and so on. What is the best library I can use for extracting ...
6
votes
2answers
463 views

Make a link completely invisible?

I'm pretty sure that many people have thought of this, but for some reason I can't find it using Google and StackOverflow search. I would like to make an invisible link (blacklisted by robots.txt) to ...
6
votes
7answers
3k views

Automated screenshots?

I need a tool to make screenshots of every page on a rather large site so I'm looking for a tool that can (best case scenario) automatically spider the site and create screenshots of every page in a ...
5
votes
2answers
814 views

Make a Web Crawler/ Spider

I'm looking into making a web crawler/ spider but I need someone to point me in the right direction to get started. Basically, my spider is going to search for audio files and index them. I'm just ...
5
votes
2answers
1k views

Spider a Website and Return URLs Only

I'm not quite sure how best to define/articulate this, but I'm looking for a way to pseudo-spider a website. The key is that I don't actually want the content, but rather a simple list of URIs. I can ...
5
votes
6answers
235 views

Storing URLs while Spidering

I created a little web spider in python which I'm using to collect URLs. I'm not interested in the content. Right now I'm keeping all the visited URLs in a set in memory, because I don't want my ...
5
votes
13answers
2k views

How to detect if a visitor is human and not a spider

I am logging every visit to my website and determining if the visitor is human is important. I have searched the web and found many interesting ideas on how to detect if the visitor is human. if ...
4
votes
1answer
236 views

Ruby on Rails, How to determine if a request was made by a robot or search engine spider?

I've Rails apps, that record an IP-address from every request to specific URL, but in my IP database i've found facebook blok IP like 66.220.15.* and Google IP (i suggest it come from bot). Is there ...
4
votes
5answers
255 views

Detecting search engine optimization (SEO)

How could a client detect if a server is using Search Engine Optimizing techniques such as using mod_rewrite to implement "seo friendly urls." For example: Normal url: ...
4
votes
1answer
91 views

Control over connection used in HttpWebRequest

Is it possible to have any sort of control over the connection used for a HttpWebRequest? I use the BindIPEndPointDelegate property to set the IP to bind the request to. However I want to have 5 ...
4
votes
3answers
181 views

Prepare your site images for google image search indexing

I'm trying to understand how can I do to let my site be reachable from google image search spiders. I like how last.fm solution, and I thought to use a technique like his staff do to let google find ...
4
votes
4answers
772 views

Why should Ruby not be used to create a spider

In Episode 78 of the Joel & Jeff podcast one of the Doctype / Litmus guys states that you would never want to build a spider in ruby. Would anyone like to guess at his reasoning for this?
4
votes
6answers
3k views

Writing a Faster Python Spider

I'm writing a spider in Python to crawl a site. Trouble is, I need to examine about 2.5 million pages, so I could really use some help making it optimized for speed. What I need to do is examine the ...
4
votes
5answers
2k views

Scrapy SgmlLinkExtractor question

I am trying to make the SgmlLinkExtractor to work. This is the signature: SgmlLinkExtractor(allow=(), deny=(), allow_domains=(), deny_domains=(), restrict_xpaths(), tags=('a', 'area'), ...
4
votes
3answers
1k views

is there a good web crawler library available for PHP or Ruby?

is there a good web crawler library available for PHP or Ruby? a library that can do it depth first or breadth first... and handle the links even when href="../relative_path.html" and base url is ...
4
votes
3answers
756 views

Possible to prevent search engine spiders from infinitely crawling paging links on search results?

Our SEO team would like to open up our main dynamic search results page to spiders and remove the 'nofollow' from the meta tags. It is currently accessible to spiders via allowing the path in ...
4
votes
9answers
970 views

What are the key considerations when creating a web crawler?

I just started thinking about creating/customizing a web crawler today, and know very little about web crawler/robot etiquette. A majority of the writings on etiquette I've found seem old and awkward, ...
3
votes
1answer
61 views

Request bot to reparse robots.txt

I am writing a proxy server that maps youtube.com to another domain (so users can easily access youtube from countries like Germany without search results and videos being censored). Unfortunately ...
3
votes
2answers
299 views

Running a spider (webcrawler) to find specific content

First of all I don't know whether this is the right place for this question. If not I'm sorry :) Am thinking of writing a spider to crawl the web finding specific embedded files. However I was ...
3
votes
4answers
431 views

Wikipedia text download

I am looking to download full Wikipedia text for my college project. Do I have to write my own spider to download this or is there a public dataset of Wikipedia available online? To just give you ...
3
votes
2answers
550 views

Designing a multi-process spider in Python

I'm working on a multi-process spider in Python. It should start scraping one page for links and work from there. Specifically, the top-level page contains a list of categories, the second-level pages ...
3
votes
3answers
799 views

Developing a crawler and scraper for a vertical search engine

I need to develop a vertical search engine as part of website. The data for the search engine comes from websites of specific category. I guess for this I need to have a crawler that crawls several ...
3
votes
7answers
5k views

Get a list of URLs from a site

I'm deploying a replacement site for a client but they don't want all their old pages to end in 404s. Keeping the old URL structure wasn't possible because it was hideous. So I'm writing a 404 ...
3
votes
3answers
762 views

Robots.txt: allow only major SE

Is there a way to configure the robots.txt so that the site accepts visits ONLY from Google, Yahoo! and MSN spiders?
3
votes
5answers
434 views

Quickest way to get list of <title> values from all pages on localhost website

I essentially want to spider my local site and create a list of all the titles and URLs as in: http://localhost/mySite/Default.aspx My Home Page http://localhost/mySite/Preferences.aspx My ...
2
votes
1answer
102 views

Scrapy is following and scraping non-allowed links

I have a CrawlSpider set up to following certain links and scrape a news magazine where the links to each issue follow the following URL scheme: http://example.com/YYYY/DDDD/index.htm where YYYY is ...
2
votes
1answer
87 views

hierarchy in sites

I'm not sure if this question will have a single answer or even a concise one for all answer but I thought I would ask non the less. The problem isn't language specific either but may have some sort ...
2
votes
3answers
303 views

I need to write a web crawler for specific user agent - please help

I need to write a web crawler, and want to be able to crawl using a known user agent. For example, I want my crawler to act as an iphone to crawl the mobile site of a website, then crawl again using ...
2
votes
0answers
219 views

curl_multi sometimes works sometimes doesn't

Sometimes when I run my script curl_multi_getcontent() returns NULL, sometimes it returns the page data like it should. It seems from experiments that the first cURL of a page works, but all ...
2
votes
2answers
294 views

How to know if HTTP Request is a BOT

I am looking for a full list of User-Agents of BOTS (crawlers, spiders, twitter bots, etc). Do you know anything? Thanks
2
votes
2answers
147 views

Removing unnecessary data from html pages

To evaluate my project, I need to run it on web pages. Therefore, I downloaded pages from the web and used html2text to remove the html tags. However, for my project I only need sentences extracted ...
2
votes
1answer
105 views

spider web drawing

i have to draw a spider web using data structures. not so big on imagination. should i use a binary tree or a graph? or other data structures?
2
votes
3answers
297 views

Does the spiders indexing your website (google bot…) have a “culture”?

This is a SEO question : i've the choice to display a page's title according to the culture of the visitor. If it's an english : <title> <?php if ($sf_user->getCulture() == 'en') : ...
2
votes
1answer
382 views

Is there a spider for Zend Lucene?

Is there a pre-written PHP spider/crawler that can be used to feed documents to the Zend_Search_Lucene indexer? I've found Sphider but it is very tightly coupled to MySQL, and not able to be ...
2
votes
3answers
628 views

Creating a spider using Scrapy, Spider generation error

I just downloaded Scrapy (web crawler) on Windows 32 and have just created a new project folder using the "scrapy-ctl.py startproject dmoz" command in dos. I then proceeded to created the first spider ...
2
votes
3answers
89 views

How to check if a page is displaying a specific <img> tag

What is the best way to determine if a page on a website is REALLY displaying a specific img tag like this <img src=http://domain.com/img.jpg>? A simple string comparison is easy to fool using ...
2
votes
4answers
891 views

Best Open Source Spider for Site Coverage

I am interested in crawling a lot of websites. The most important consideration is that the spider is able to reach as much as the site as possible. One key feature that is lacking from most spiders ...
2
votes
3answers
1k views

Legality, terms of service for performing a web crawl

I was going to crawl a site for some research I was collecting. But, apparently the terms of service is quite clear on the topic. Is it illegal to now "follow" the terms of service. And what can ...
2
votes
4answers
162 views

Will <insert popular website here> restrict me from accessing their website if I request it too many times?

I ask this because I am creating a spider to collect data from blogger.com for a data visualisation project for university. The spider will look for about 17,000 values on the browse function of ...
2
votes
2answers
125 views

Automated spider test

I'm looking to add a very simple layer of automated integration testing to our current Continuous Integration setup. (CI currently only checks for build breaks). Is there a product that will: From ...
2
votes
5answers
2k views

C# library similar to HtmlUnit

I need to write standalone application which will "browse" external resource. Is there lib in C# which automatically handles cookies and supports JavaScript (through JS is not required I believe)? The ...
2
votes
1answer
179 views

How can I prevent the googlebot from crawling Ajaxified Links?

I've got a bunch of ajaxified links that do things like vote up, vote down, flag a post - standard community moderation stuff. Problem is that the googlebot crawls those links, and votes up, votes ...
2
votes
6answers
1k views

Google indexed my test folders on my website :( How do I restrict the web crawlers!

Help Help! Google indexed a test folder on my website which no one save I was supposed to know about :(! How do I restrict google from indexing links and certain folders.
2
votes
2answers
3k views

How would someone download a website from Google Cache?

A friend accidentally deleted his forum database. Which wouldn't normally be a huge issue, except for the fact that he neglected to perform backups. 2 years of content is just plain gone. Obviously, ...

1 2 3 4