This tag refers to the technique used to extract information from content intended for human consumption. Most commonly refers to extracting data from websites.

learn more… | top users | synonyms

2
votes
1answer
517 views

Getting 403 error when trying to parse dropbox events page with python and mechanize

I use this script to get a list of all file updates to a certain directory. I then parse that list to get a list of time slots I have been active in that directory. That way I can quickly see how much ...
2
votes
1answer
108 views

Dynamically web scrape tables for a CMS

Does anyone have suggestions as to how I could scrape a table that updates daily from a website when I do not have access to server side scripting? Specifically, I am using a CMS - Drupal - and do not ...
1
vote
1answer
1k views

Looking for a good automated web scraping tool

I am trying to scrap some information from a large website database and would happy to hear if you have some recommendations on a good scraping tool. The website generated a query with several ...
1
vote
1answer
86 views

Creating automatically pages with “scraped” content for a iphone webapp

I'm not sure if this is the right section. So far i've made an HTML iphone webapp for an italian soccer news website(Pianeta Lecce). My webapp has a tabbar where you can choose the news according ...
1
vote
1answer
42 views

How to scrape and virtually combine wiki articles?

So our company has a large number of internal wiki sites for different departments and I'm looking for a way to unify them. We've keep trying to get everybody to use the same wiki but it never works, ...
1
vote
1answer
72 views

How to get data from the TreelView list

http://www.vliz.be/vmdcdata/mangroves/aphia.php?p=browser&id=235056&expand=true#ct (That's the information I am trying to scrape) I wanna to scrape this detailed taxonomic trees so that I can ...
1
vote
1answer
246 views

Java emulation of a vt220 terminal for screen scraping

I have to do a screen scraping of a vt200 telnet connection using Java 1.6. I have tried to cheat and use a simple telnet connection with InputStrem and OutputStream but the server is picky and, when ...
2
votes
0answers
83 views

java html scrape the facebook way

When you post a link to facebook, it shows a small thumbnail and a description of the content of that page. I know it uses og meta tags in html pages, but sometimes even though these meta tags are ...
2
votes
0answers
86 views

rcurl web scraping timeout exits program

I am using a loop and rcurl scrape data from multiple pages which seems to work fine at certain times but fails when there is a timeout due to the server not responding. I am using a timeout=30 ...
2
votes
0answers
315 views

pinyin in google translate API

I want to scrape the pinyin off of the googletranslate API instead of having to scrape from some other website (which might change its format in ten thousand ways over time and across different ...
1
vote
0answers
24 views

Handling gzipped web content with WWW::Mechanize/::GZip

The question is simple, how to handle content that is gzipped. And not only handle that content but fill in forms and do all the stuff that you'd normally do with WWW::Mechanize. I'm trying to do a ...
1
vote
0answers
65 views

The output I get from scrapy appears null

I am scraping data from a certain website. My scrapy crawled and scraped it but the output is null. Here's my code: from scrapy.spider import BaseSpider from scrapy.selector import ...
1
vote
0answers
42 views

Foreign Keys on Scrapy

im doing an scrap with scrapy and my model on django is: class Creative(models.Model): name = models.CharField(max_length=200) picture = models.CharField(max_length=200, null = True) class ...
1
vote
0answers
277 views

Django: [Errno 10054] An existing connection was forcibly closed by the remote host When using urllib2 and httplib2

def scrape(request): url = request.GET.get('url') conn = httplib2.Http() resp, content = conn.request(uri=url) return HttpResponseRedirect(content) def scrape1(request): url = ...
1
vote
0answers
292 views

Submitting 'aspnetForm' using Ruby Mechanize is not working as expected

I am using ruby mechanize gem to automate form submission and scrape the results. I have the following code: require 'mechanize' require 'logger' url = ...
1
vote
0answers
71 views

update my code to scrape site that needs cookie

I am using this code to scrape page name, url and images. It works very well, however on some websites it fails and returns text saying cookies are required. How can i set cookie, or emulate a cookie ...
1
vote
0answers
116 views

FB wont scrape a php version but will the html version

I have a really weird issue here. No matter what I do, even using a simmple basic test page, facebook returns a 206 error and wont scrape my test.php page. If I simply change the extension to ...
1
vote
0answers
162 views

YQL "The current table has been blocked”

I'm trying to query my self-written YQL-table. If I run the table from the YQL Console, everything works fine. But if I call the table by URL via browser or application, the following error appears: ...
0
votes
0answers
36 views

how to use the search bar of a website with R?

I want to use the search bar of a specific website. And then ask for some keywords. And have the links in which appears my keyword using R packages Rcurl,json and XML. For exemple, I want to scrape ...
0
votes
0answers
8 views

How to run a very specific site scrape?

I want to run a scrape on a very specific portion of my site. I want it to be www.mysite.com/2013. I've been trying using Xenu Link Sleuth but I can't quite figure out exactly how to limit my results ...
0
votes
0answers
34 views

How to push buttons and submit forms while web scraping in node.js

So my question is very simple, I've been able to find some places suggesting different options but nothing that has been clear or reliable. I have different problems. 1 While web scraping, I need ...
0
votes
0answers
42 views

Scrape Text from Chat Log: C#

How would I go about scrapping text from a chat log in another running process in C#? I have tried multiple ways of doing this and have run into issues each time: 1: I tried using the Win32 API ...
0
votes
0answers
25 views

Scrape Html with Unique Id's

I have been trying to resolve this for almost a day and a half so I hope someone can help. I am trying to scrape a page... I have created a very simple win app in c#. It allows me to navigate to the ...
0
votes
0answers
84 views

Any alternatives to Google Docs spreadsheet that allows unlimited ImportXML-type function?

First off, I'm a total novice when it comes to programming so any answers that require a lot of technical expertise/programming know-how aren't really going to work. I've had some success at scraping ...
0
votes
0answers
74 views

scrapy doesn't scrape all the data from a website

I am new in python. I was trying to scrape informations from eypej. i was able to scrape one link only and the title and details were not. i get a very messy result. I want to scrape all the ...
0
votes
0answers
12 views

preg_match_all() [function.preg-match-all]: Unknown modifier '<'

I'm from China.Forgive my not perfect english. I want to scrape the products' url list from the page "-/N-1dzZne">http://www.eastbay.com/Training/Shoes/-/N-1dzZne",I write a preg_match_all() ...
0
votes
0answers
57 views

Using Capybara to select between frame tags with same name and ID

This is pretty specific, but if someone else has a similar issue at least they'll have a resource because I haven't found anything. I'm trying to execute the following code: require 'rubygems' ...
0
votes
0answers
88 views

Difficulties using UNIX cURL to scrape Ajax Wicket Information

I am instructed to use write UNIX shell scripts that scrape certain websites. We use fiddler to trace the HTTP requests, then we write the cURLs accordingly. For the most part, scraping most websites ...
0
votes
0answers
40 views

Scraping data - extracting data from json

I am looking to scrape this site using excel VBA: https://www.icetradevault.com/ticker/# It is free to register an account. Once you log in you will see an empty table and entries will appear as ...
0
votes
0answers
59 views

Why doesn't Facebook like the responses from our server?

We are trying to implement some Facebook functionality, but the Facebook code doesn't like the response sent back for some reason. Testing using other methods all get a 200 response, so it's quite ...
0
votes
0answers
93 views

PHP cURL scraping HTML TR tag outputting NULL

Here's my code: <?php set_time_limit(0); $agent = 'User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.3) Gecko/2008100922 Ubuntu/8.04 (hardy) Firefox/3.0.3'; $url = ...
0
votes
0answers
69 views

Scraping website but it doesn't load the links (insert of base doesn't work)

I'm trying to scrape a website and inject some Javascript into it (doing a project). My problem is that it won't load images or anything that has a reference to "/something/something.png" - If it has ...
0
votes
0answers
31 views

Unique path results in Google searches?

I have a search that I'm performing wherein I need to gather certain unique paths. For example, right now I'm wanting to find the portion of the string www.somedomain.tld/unique_identifier while the ...
0
votes
0answers
51 views

Calling parent form with mechanize python

I'm trying to fill a form with python mechanize. But it seems that 2 forms are embedded and I don't find a way to make mechanize interact with that. exportresult <exportresult POST ...
0
votes
0answers
25 views

Is there a way to get a site description from DMOZ by API?

I'm trying to get a short webpage description for pages which don't have a description meta. I know that Google gets theirs from dmoz. Is there any api which allows one to programatically get this ...
0
votes
0answers
85 views

Unable to split/explode data using PHP_EOL?

Here I am trying to scrape content from webpage and print it as tilde separated value. This is what I am trying. <?php error_reporting(E_ALL); echo '<pre>'; // ACQUIRE THE DOCUMENT $url = ...
0
votes
0answers
270 views

Java screen scraping with JTidy - Parsing HTML values

So what I'm trying to accomplish is scraping an IMDB webpage for data from webseries. Problem is when I convert the page to a DOM object and try to get values it's not as easy as it looks. For ...
0
votes
0answers
103 views

How to use DOM and XPATH in PHP to scrape content associated with css IDs/CLASSes in parsed tags

I'm in over my head, but that hasn't stopped me from getting the job done before. Seeking suggestions/examples to do this: 1) For any website URL provided: 2) obtain a list of all HTML tags, ...
0
votes
0answers
50 views

scrape page that extends on scroll

How would you scrape the complete webpage that extends upon the user scrolling down? For instance in Python? Until now it only reads the unscrolled/unextended content.
0
votes
0answers
144 views

how to add bridge after setup tor cloud in amazon ec2

we need scrape a site that check IP quite often and blocking some of the Tor exits. b/c one IP would be blocked that we can't continue the scraping, we're setup 5 instances with Tor cloud images. ...
0
votes
0answers
97 views

BeautifulSoup: Skip html element

I have the following html structure: This is only a section of it but I think this snippet is good enough to explain my problem. <tr> <td> Color Digest </td> <td> AgAkAZwCJgMZ ...
0
votes
0answers
93 views

Scraping onMouseOver without capturing mouse pointer in Windows GUI/game possible (maybe with Python)?

I would like to scrape data from a game window that is only visible when the mouse hovers over some GUI element. Can the process of making the window visible be automated (in Python) without taking ...
0
votes
0answers
103 views

Scraping all the topics a user follows on Quora

I'm using Quora-Personal-Analytics to get the names of all topics Marc Bodnick is following. Last year this used to work: ruby QuoraCrawler.rb "Marc-Bodnick" -t; ruby QuoraStats.rb "Marc-Bodnick" -t ...
0
votes
0answers
52 views

Receiving traffic being refered from Localhost

Is somebody attempting to hack or scrape my media site? I'm getting traffic at certain intervals refered from localhost:(multiple ports) and the referral path is selenium-server/core/Blank.html What ...
0
votes
0answers
333 views

Saving web page's Source-code Python

I was trying to scrape a webpage, but when I organize the page's source code python misses some codes that I'll need. If I save the source code previously, by right clicking on the page, I have no ...
0
votes
0answers
125 views

how to scrape and decipher a GWT page through Ajax to resubmit

I am doing some screen scraping on a website and one of the pages is using GWT. while I can read the current data on the page, I cannot update and resubmit the data since I cannot figure out how the ...
0
votes
0answers
117 views

iPhone Scraping aspx with _doPostBack

I am trying to write code to scrape a table (using HPPLE) from an aspx file. The problem is that the table only displays thirty items at a time then it has a link that calls the javascript _doPostBack ...
0
votes
0answers
325 views

How to batch find business url's?

I'm trying to develop a list of local businesses for me to market a service to. I'm in the process of scraping a directory online so I'll have a list of about 10,000 or so, a few will have url's but ...
0
votes
0answers
445 views

Scrape images from html using PHP?

I'm very new to PHP. The first little project I've assigned to myself was to create a barebones mobile version of my wordpress site. My plan of attack was to use the website's RSS feed to attain the ...
0
votes
0answers
800 views

How do I get data from the iTunes app store

I'm trying to scrape the entire iTunes App Store so that I can store it in a database for a project I'm working on. I'm having a hard time finding the best way to do this. I know there are ways to get ...

1 2 3