1
vote
3answers
54 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, th …
0
votes
1answer
18 views
Twisted errors in Scrapy spider
Hello,
When I run the spider from the Scrapy tutorial I get these error messages:
File "C:\Python26\lib\site-packages\twisted\internet\base.py", line 374, in fireEvent DeferredLi …
0
votes
3answers
51 views
Newbie Q about Scrapy pipeline.py
Hello,
I am studying the Scrapy tutorial. To test the process I created a new project with these files:
See my post in Scrapy group for links to scripts, I cannot post more than …
0
votes
2answers
36 views
Spider that tosses results into mysql
Looking to use Sphinx for site search, but not all of my site is in mysql. Rather than reinvent the wheel, just wondering if there's an open source spider that easily tosses its fi …
0
votes
1answer
18 views
what do you call a spidering technique where spider visits all links in the first level, and all links in second level.
i forgot the name to a case where a web spider will
first visits all links it sees on the first level.
then visits all links it sees on the second level.
and so on...
there is a …
1
vote
1answer
67 views
Python Package For Multi-Threaded Spider w/ Proxy Support?
Instead of just using urllib does anyone know of the most efficient package for fast, multithreaded downloading of URLs that can operate through http proxies? I know of a few such …
0
votes
2answers
28 views
Best Site Spider ?
Hi,
I am moving a bunch of sites to a new server, and to ensure i don't miss anything, want to be able to give a program a list of sites and for it to download every page/image on …
0
votes
6answers
353 views
Code Golf: Multi-threaded HTML screen scraper/spider [closed]
The Challenge
Create a simple HTML screen scraper that finds all links to stackexchange sites on a given start page and attempts to fetch the number of questions on each site. Res …
3
votes
6answers
979 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 …
11
votes
6answers
1k 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 …
0
votes
3answers
97 views
C# library similar to HtmlUnit
Hello.
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 …
3
votes
11answers
277 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 visito …
0
votes
3answers
84 views
HTML parser…My recent project needs a web spider..
HTML parser...My recent project needs a web spider..it automatically get web content which it gets the links recursively....
But, it needs to know its content exactly. like tag.
i …
2
votes
1answer
48 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, an …
0
votes
0answers
22 views
Getting the refering page from wget when recursively searching.
I'm trying to find any dead links on a website using wget. I'm running:
wget -r -l20 -erobots=off --spider -S http://www.example.com
which recursively checks to make sure each …
