Synonym for web-crawler tag. Somebody please synonym it (I lack the rep in web-crawler tag)
0
votes
1answer
58 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
22 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.
...
-4
votes
0answers
30 views
Fetch URLs from website
[SUMMARY]
I want to fetch the URLs of the pages behind a website's page, without knowing them.
It's like this but with pages I don't know.
[IN-DEPTH INFORMATION]
The website contains data about TV ...
0
votes
1answer
21 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
28 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
35 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
21 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
71 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
37 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
46 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
95 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
35 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
86 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
63 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
54 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
47 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
23 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
59 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 ...
0
votes
1answer
214 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
135 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
52 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
261 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
465 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
77 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
75 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
98 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
65 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
152 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
33 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
138 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
178 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
187 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
116 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
84 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
151 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
86 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
256 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
105 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
405 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
152 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
31 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 ...
2
votes
1answer
310 views
Trying to crawl all links of a webpage with scrapy. But I cannot output the links on a page
My first question here :)
I was trying to crawl my schools website for all possible webpages there are. But I cannot get the links into a text file. I have the right permissions, so that is not the ...
2
votes
1answer
161 views
How to write a rule for scrapy to add visited urls
When scrapy shuts down, it will forget all the urls. I want to give scrapy a set of urls which have been crawled, when it is begin.
How could add a rule to crawlspider to let it know which urls have ...
1
vote
0answers
90 views
Can Anemone keep previously stored pages when recrawling
I just learned about Anemone the spider framework. Its site said
Note: Every storage engine will clear out existing Anemone data before beginning a new crawl.
Question: I am wondering if I can ...
0
votes
1answer
125 views
Scrapy Python Crawler - Different Spider for each?
I have a lot of different sites I want to scrape using scrapy. I was wondering what is the best way of doing this?
Do you use a different "project" for each site you want to scrape, or do you use a ...
0
votes
2answers
1k views
how to build web crawler using asp.net mvc3 and c#?
i need to build the small search engine like google using asp.net MVC 3. for this one i also need to build the web crawler which populate the data for search engine. in summary i need the following ...
-2
votes
1answer
58 views
Find whether two domain names point to same site [closed]
I am building a crawler in JAVA and i need to check whether domain names like http://www.google.com and http://google.com and google.com point to the same site...
It would be really helpful if you ...
0
votes
0answers
54 views
offline big site download for spider testing
for testing offline spidering functions i looking for downloading huge web site archive
or something alike .
so i could setup web server to test the spider with ,
is there something in the net for ...
0
votes
2answers
185 views
Intelligent crawler that can prioritize sources based on keywords?
I'm trying to create a webcrawler that continuously crawls the web looking for webpages that contain certain keywords. There are a lot of open source solutions for this (Nutch, Scrapy et cetera), but ...
1
vote
2answers
484 views
Perl mechanize Find all links array loop issue
I am currently attempting to create a Perl webspider using WWW::Mechanize.
What I am trying to do is create a webspider that will crawl the whole site of the URL (entered by the user) and extract all ...



