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

learn more… | top users | synonyms

1
vote
2answers
29 views

scrapy - how to get text from 'div'

I just started to get to know scrapy. Now I am trying to crawl by following tutorials. But I have difficulty to crawl text from div. This is items.py from scrapy.item import Item, Fied class ...
0
votes
2answers
56 views

How to return multiple values in python

I am working currently working on a spider; but I need to be able to call the Spider() function more than once to follow links, here is my code: import httplib, sys, re def spider(target, link): ...
0
votes
2answers
37 views

Filtering a variable so it only contains a specified string python

I am trying to make a spider in python; I know about harvestman but thats NOT what I am looking for. here is what i have so far: import httplib, sys target=sys.argv[1] subsite=sys.argv[2] link = ...
0
votes
2answers
37 views

When to use 'http://' or 'http://www.' when scraping?

I am scarping a small number of sites with the ruby anemone gem. Anemone.crawl("http://www.somesite.com") do |anemone| anemone.on_every_page do |page| ... end end ...
0
votes
1answer
12 views

Web Search Engine for group of enterprise websites

Buidling a search engine requires a large team of developers, time, and alot of money. Thats been said: How to build a small search engine for large enterprise with over 30 websites they own? Im ...
0
votes
1answer
36 views

Python scraper mechanize/javascript

I have to scrape all info for former US governors from this site. However, to read out the results and then follow the links, I need to access the different results pages, or, preferably, simply set ...
-6
votes
0answers
17 views

Any good open source spider on ios? [closed]

everybody,pls. Is there any open source spider for ios? I want to make it in my app, for providing good experience of "offline opeartions". Thank you.
0
votes
0answers
25 views

How to login a https server using python

I want to capture some webpage, but that is https based and require user and password authentication. I have user and password, but have no idea how to use that in python script. Coudl anybody share ...
0
votes
0answers
47 views

With PHP how can I currently spider a website?

I have written a web spider in PHP. Here is the original, non-concurrent approach: <?php function spider() { $temp_link_array = $this->harvest_links($this->seed_url); ...
-3
votes
0answers
27 views

the mechanism of web spider [closed]

As far as I know,many people wrote web spider in python or other script language,I want to write web spider in C language,but I do not know the mechanism of spider,does spider mean collar a webpage ...
0
votes
1answer
142 views

simple PHP web crawler working on some, certain types of, pages

I made this simple PHP web crawler that gets the source from a page after the opening body tag, strips the other HTML tags, and then echo's the content. It works when I initiate it giving it a page ...
0
votes
0answers
40 views

“This is an invalid script resource request.” error when Websense crawls /ScriptResource.axd

I am getting the following error very often on my websites: "This is an invalid script resource request." The error occurres when a spider tries to crawl /ScriptResource.axd or /WebResource.axd. ...
0
votes
1answer
27 views

Avoid robots from going into a www.domain.com/thishash when link posted to twitter, facebook

I'm building a service where people gets notified (mails) when they follow a link with the format www.domain.com/this_is_a_hash. The people that use this server can share this link on different places ...
1
vote
1answer
32 views

Does Google spider read robots.txt before accessing a resource?

I have been wondering this for a while. I know that if, for instance, I link here the site example.com and that domain hosts a robots.txt file that disallow everything, Google won't index it. ...
-2
votes
2answers
37 views

Google search and restricted contents? [closed]

If a website has a content that will not be seen if someone is not logged in, then, how does Google see it? The page is an e-commerce, restricted access (a user must log-in to see products) page; as ...
0
votes
0answers
30 views

Search HTML tags in a website using wget

I would like to know how to search a website for a html tag using wget. Example search the website www.example.com/* and if any page with tag <table> is found save the url of the page to a file. ...
0
votes
1answer
80 views

call one spider from another spider in a web crawler made using scrapy

I want to hit all the links on a web page where pdf files lie and store these pdf files on my system. from scrapy.spider import BaseSpider from scrapy.selector import HtmlXPathSelector from ...
-3
votes
2answers
38 views

What to do with index of crawled pages? [closed]

I developed a web crawler and it successfully crawls pages and gets their content. But what should I do with the crawled data? It seems inefficient to store it in the memory. Database? Or store it in ...
0
votes
0answers
61 views

Fatal error in spider catalog extension in joomla 2.5

I am using spider catalog extension to display a catalog of products in my site. After I uploaded my site to the server i was faced with this error when I tried to access the products page: Fatal ...
0
votes
1answer
107 views

Web Crawler not following page's links

I built a simple web crawler that echo's a page's contents after <body>. It does that fine, the only problem is that it is not following the links on the page to go to other pages that it ...
0
votes
1answer
39 views

Preferred technique for 'pacing' HTTP requests in JS/jQuery?

I'm trying to "spider" a small set of data from a single site using TamperMonkey/Javascript/jQuery and collate it on to a single page. I've written a TM script (which fires when I open a target page) ...
2
votes
1answer
102 views

HTTP 500 error in simple PHP web crawler

I'm trying to run a web crawler that is pointed at one url, that has no links, the code seems fine; but, I am getting an http 500 error. All it does with the content it crawls is echo it. Any idea ...
0
votes
1answer
104 views

How to pass a user defined argument in scrapy spider

I am trying to pass a user defined argument to a scrapy's spider. Can anyone suggest on how to do that. I read about a parameter '-a' somewhere but have no idea how to use it. Thanks in advance.
0
votes
3answers
64 views

Android device API

In the scope of developing an app testing platform I find myself in dire need of a decent and complete reference of android devices. The most complete list I have found so far is ...
0
votes
1answer
50 views

Use Scrapy to cut down on Piracy

I am new to using Scrapy and I know very little of the Python Language. So far, I have installed Scrapy and gone through a few tutorials. After that, I have been trying to find a way to search many ...
-1
votes
1answer
26 views

Showing Links Going To A Domain Or Page Using Nutch

I am using nutch and solr on ubuntu. I would like to use php to query the database or other methods to return an array of links from indexed pages that go to any particular url or domain. Please point ...
0
votes
1answer
69 views

Why does scrapy return two of each item?

Scrapy returns two results for each item I would like to scrape. I could just delete the duplicates later on in the CSV file, but I feel like there is a much more elegant solution that I am not ...
1
vote
1answer
299 views

Scrapy - parsing all sub-pages of a given domain

I would like to parse kickstarter.com projects using scrapy, but can't figure out how to make the spider search projects that I don't explicitly specify under start_urls. I have the first part of the ...
0
votes
4answers
145 views

How to include the command “wget” on my C source code?

I need to run a program that crawls websites and I already have an algorithm and some parts of the code. Problem is, I do not know how to insert wget into my source code. Our student assistant hinted ...
0
votes
0answers
55 views

Matlab: How to only follow certain links in Matlab spider

I am struggling with only allowing certain urls to be followed when using a spider to build a web graph. Basically I only want the spider to follow links that point to the uni server (shef.ac.uk), any ...
0
votes
1answer
293 views

Using multi-threading to improve web crawler / spider

I've start learning about web crawlers and with the help of an article I built this simple one below. It suggested using multithreading to improve and make the web crawler faster. I was wondering if ...
0
votes
1answer
794 views

Writing a PHP script that open website's pages and stores page's content in variable

I have been building a search-engine, but now I need a web crawler that in PHP that can crawl my website for it's content. I don't know if a web crawler / spider is the right word, but I was hoping ...
0
votes
0answers
86 views

Scrapy - Good way to split exported files?

I want to split the files exported by the JsonLinesItemExporter into multiple files whenever the spider has parsed a certain number of items (MAX_ITEMS). The code below is a working solution, but I ...
1
vote
1answer
89 views

How to store the URLs crawled with Scrapy?

I have a web crawler that crawls for news stories on a web page. I know how to use the XpathSelector to scrape certain information from the elements in the page. However I cannot seem to figure ...
0
votes
2answers
108 views

Looking for an application/tool for spidering a website that loads more content upon scrolling

I'm looking for an application/tool that will allow me to spider a website where you have to scroll down vertically repeatedly for the whole page to load. I need to be able to define the starting ...
1
vote
1answer
72 views

FQL limitation: Need external spider to get friends of friends - what to use?

Facebook's FQL won't allow for getting a friend's friend list unless that friend has authorized the app, even though you have access to it if you visit their page. (At least mutual friends.) So, I ...
0
votes
2answers
197 views

Scrapy parse_item callback not being called

I'm having a problem getting my Scrapy spider to run its callback method. I don't think it's an indentation error which seems to be the case for the other previous posts, but perhaps it is and I ...
0
votes
1answer
35 views

Blocking web spider

I want to block all web spiders to vaccum my web site. Is there a way ? I only found some Apache rules from 2008 (like this one ) http://perishablepress.com/ultimate-htaccess-blacklist/
3
votes
1answer
155 views

How to collect data from multiple pages into single data structure with scrapy

I am trying to scrape data from a site.The data is structured as multiple objects each with a set of data. For example, people with names, ages, and occupations. My problem is that this data is split ...
1
vote
1answer
214 views

Scrapy: Crawled but not scraped

with the suggestions provided and with lot of trail, i was able to get the crawl work for single page. Now, I have tried to make changes to code, to implement multiple rules, but the results doesn't ...
2
votes
2answers
215 views

Scrapy - doesn't crawl

I'm trying to get a recursive crawl running and since the one I wrote wasn't working fine, I pulled an example from web and tried. I really don't know, where the problem is, but the crawl doesn't ...
10
votes
2answers
123 views

Are user-controlled friendly URLs automatically handled by Google?

I have a Friendly URL system exactly like Stack Overflow. So /car/123/blue-subaru-1993 is a link. But as users have the ability to change the title of the listing, it could soon become: ...
0
votes
1answer
88 views

php spider breaks in middle (Domdocument, xpath, curl) - help needed

I am a beginner programmer, designing a spider that crawls pages. Logic goes like this: get $url with curl create dom document parsing out href tags using xpath storing href attributes in ...
0
votes
1answer
179 views

how Google crawl content with jQuery's load function?

I have a question regarding SEO, when you use the .load functionality in jQuery. You can load a document by referring to the href value of the link you clicked. In this first case, the folder name ...
1
vote
2answers
100 views

Item caching in Scrapy

I'm scraping a website that's structured like this: Archive Article 1 Authors Author 1 Author 2 Title Body Comments Comment 1 ...
2
votes
4answers
290 views

Scrapy headache - trying to debug. No errors but code not working

EDIT: THIS HAS BEEN RESOLVED! XPATH WAS THE ISSUE. I'm very confused. I'm trying to write a very simple spider, to crawl a website (talkbass.com) to get me a list of all the links in the classified ...
0
votes
3answers
112 views

Scrapy Reverse Crawl

The spider crawls some specific links from one page. It then searches in each of those pages a youtube link and a name to identify it to(the page title). It does find all the links I need however the ...
0
votes
5answers
535 views

How to get all webpages on a domain

I am making a simple web spider and I was wondering if there is a way that can be triggered in my PHP code that I can get all the webpages on a domain... e.g Lets say I wanted to get all the webpages ...
0
votes
0answers
157 views

web crawler memory leak

I decided to develop a web crawler in Java 6 without the aid of external libraries (JSoup consumes a lot of RAM). Below is the code <pre> import static java.lang.System.out; import ...
-1
votes
1answer
37 views

Privacy Policy, ToS Pages with Meta KW and Desc? [closed]

I am currently in the process of making my website SEO, and I was wondering if I should have a meta keyword and description for the Terms of Service and Privacy Police page. Currently I only have a ...

1 2 3 4 5 6