Screen-scraping, also known as web-scraping or data-scraping is a software technique use to collect and parse information from user interfaces.

learn more… | top users | synonyms (1)

0
votes
0answers
53 views

Extract data from google chart

I am looking for a way to extract data from a chart displayed on Google's transparency report. http://www.google.com/transparencyreport/traffic/ The chart is shown in flash and displays traffic by ...
0
votes
2answers
107 views

How do you read the rendered html code of a website in Objective-C line by line?

So I have had extensive experience reading rendered html source code of a website in Java. However I have researched thoroughly regarding how to do the exact same thing in Objective-C and have been ...
3
votes
2answers
212 views

Execute Javascript method on web page from Python

I am writing a web scraper for a particular webpage and I am doing this with "urllib2.Request(MyURL)" and "BeautifulSoup" but the problem is that there is a Paging on page in MyURL and the next page ...
0
votes
0answers
80 views

Using Scrapyd to save generated data to CSV

I have created Scrapy projects that have settings.py file where I have added FEED_URI = 'file.csv' and FEED_FORMAT='csv' When I run Scrapy spider, the scraping results are added to this file. ...
1
vote
1answer
73 views

Scraping majority of text in body

I'm learning how to use lxml/BeautifulSoup and I was wondering how I can do this as convenient as possible. The source has this structure for its body: <p class = "info"> <!-- a bunch ...
1
vote
1answer
77 views

How do I login to a website with C#?

I need to login to a website with C#, but the website doesn't have a login form within the page it uses a htaccess style popup login. I have done this before, but only with a site which used a webpage ...
-2
votes
1answer
88 views

Using Browser Cookies in C# Program [closed]

I have used a program which can take cookies from Firefox and IE and use them within the program to get through login authentication without having to manage passwords within the program. How could I ...
2
votes
1answer
162 views

Perl: how to extract and combine two sub-sections of a table using HTML::TableExtract?

I am trying to scrape and extract multiple pages of data holding tables showing the value and quantity (volume) of various goods imported into China every month. Ultimately I want to write this data ...
2
votes
1answer
62 views

How to use rspec to test screen scraping?

I'm writing a site that is going to rely a lot on screen scraping. Because I know screen scraping is prone to breaking I'd like to get notified somehow that there is a problem. The solution that I ...
1
vote
3answers
83 views

Regular Expression Query Python

I am trying to write a script to scrape a website, and am using this one (http://www.theericwang.com/scripts/eBayRead.py). I however want to use it to crawl sites other than ebay, and to customize to ...
2
votes
2answers
222 views

Selecting Paragraphs in Groups with xPath in Ruby

I'm currently working on a little web scraping project with Ruby and xPath. Unfortunatly the website is very bad structured, which leads me to a litte problem: <h3>Relevant Headline</h3> ...
2
votes
2answers
124 views

Getting data from a browser by screen-scraping

I have gone thru several relevant looking questions but they did not contain the answer I am looking for. So, here is my question: I have several web applications at my workplace, which are written ...
6
votes
1answer
178 views

Setting a C# Form to a Negative Location

I am working on a tool for Windows that will interface with CloudApp using its API. I found some articles on here about how to achieve the Region capture which I used to modified to fit my exact ...
0
votes
1answer
209 views

Getting data from a webpage (screenscraping)

Can someone please give me a good tutorial on screen scraping. I have a webpage that my university uses to upload all the data for each class. To get on to the home page for their site there is an ...
1
vote
1answer
133 views

Is it possible to run scrapy on heroku?

I want to use Scrapy to get some data off a website, but I don't want to use my laptop to do it. Would it be possible to run it as a heroku app? What other options do I have for running a scrapy ...
1
vote
2answers
154 views

beautifulsoup 4: Segmentation fault (core dumped)

I crawled the following page: http://www.nasa.gov/topics/earth/features/plains-tornadoes-20120417.html But I got Segmentation fault (core dumped) when calling: BeautifulSoup(page_html), where ...
0
votes
2answers
188 views

Scraping the mac app store

I've been wondering if this is possible? I know Apple has made it hard, but is it really impossible? All the apps have an id, which you can use to find the website for the app - ...
1
vote
1answer
358 views

Python lxml.html XPath “attribute not equal” operator not working as expected

I'm trying to run the following script: #!python from urllib import urlopen #urllib.request for python3 from lxml import html url = ...
0
votes
0answers
141 views

Python 3 web scraping

I just asked a question here about mechanize Python 3 port and it looks like there's no working port yet. What are the other solutions? What I'd expect from the library is that it could easily parse ...
1
vote
1answer
52 views

Web scraping returns tags

I'm a complete noob to HTML. I had to look up "tags" and "class" before I wrote this. I'm aware that urllib2 is the default for this sort of thing now, but I couldn't get my header to work with it ...
2
votes
0answers
272 views

Python & mechanize: How to scrape through pages in a row?

my problem is as follows: I'm trying to write a scraper that runs through the order process of an airline ticketing website. So I want to scrape a couple of pages that depend on the results of the ...
0
votes
1answer
235 views

Parsing html using lxml.html

I'm developing a Python scraper at scraperwiki.com and I need to parse a html page that containt the following: <div class="items"> <div class="item"> ItemLine1 ItemLine1 ...
2
votes
2answers
104 views

Easiest Way to Store Scraped Data

I'm creating an application that will search the documentation of a function within a language and return the results. Currently, the documentation consists of a single page which links to pages ...
0
votes
0answers
63 views

Does anyone know how to disable `RETRY` in iMacros?

Scraping a from with multiple dropdown select menus loaded via JavaScript. DOCS state that I should use SET !TIMEOUT_STEP 0 BUT If I set SET !TIMEOUT_STEP 0 It does not load the next dropdown values ...
0
votes
0answers
145 views

Scraping, filtering, and manipulating data from the CME block trade website in real time

I would like to scrape, filter, and manipulate data from the following web site in real time. ...
1
vote
0answers
26 views

Detecting Game Event

I am trying to create a program to monitor a game and detect when a specific player (me) gets a kill. I am specifically looking at Dota2. When a kill occurs, the name of the killer and victim is ...
0
votes
2answers
164 views

php mysql queries aren't updating database in for-loop

I'm screen scraping a page with data I want to write in a mysql database. $url = "http://example.com/index.jsp"; $raw = file_get_contents($url); $newlines = ...
0
votes
2answers
216 views

scrapy how to set referer url

I need to set the referer url, before scraping a site, the site uses refering url based Authentication, so it does not allow me to login if the referer is not valid. Could some one tell how to do this ...
1
vote
1answer
444 views

Parse Html with Python and lxml.html

I'm creating a Python scraper at scraperwiki.com. I need to parse a part of a html page that contains the following code: <div class="div_class"> <h3>I'm a title. Don't touch ...
0
votes
1answer
145 views

Facebook scrape returns 502 error

I'm just trying to use standard link sharing using Facebook's sharer.php url. Here is a sample link: ...
4
votes
1answer
809 views

unable to call firefox from selenium in python on AWS machine

I am trying to use selenium from python to scrape some dynamics pages with javascript. However, I cannot call firefox after I followed the instruction of selenium on the pypi ...
1
vote
3answers
377 views

Python web scraping - Download a file and store all data in xml

I am looking to use Python to scrape some data from my university's intranet and download all the research papers. I have looked at Python scraping before, but haven't really done any myself I'm sure ...
1
vote
1answer
100 views

Read XML node.text as HTML in nokogiri

I'm parsing a Reddit RSS feed with Nokogiri for a certain subreddit. I'm trying to capture the external URL of the post if it goes to a certain domain. Unfortunately, even if the post created by the ...
0
votes
1answer
20 views

Formatting links from HTML

I am trying to find a guide to explains how browsers format "links" that are contained within href tags. For example: What does the browser do with the following types of tags: /attorneys ...
1
vote
1answer
87 views

JSoup issue with ancestor child operator to perform a selection

I'm attempting to scrape everything inside a div with the class of results-column. This is the code I'm using for my query, which is not returning any data: Elements el_name = ...
0
votes
1answer
317 views

How to use cURL to POST form values on form using JS

*Sorry for the long post * I'm using cURL in PHP to post some form fields in effort to return the result of the post Need some help as the form is somewhat unusual. cURL Script $ch = curl_init(); ...
0
votes
1answer
262 views

Spynner doesn't load html from URL

I use spynner for scraping data from a site. My code is this: import spynner br = spynner.Browser() br.load("http://www.venere.com/it/hotel/roma/hotel-ferrari/#reviews") text = br._get_html() This ...
0
votes
1answer
73 views

scrape dechtech website using python

I am looking for a way to scrape the data from this website: http://www.dectech.org/football/index.php preferably using Python. The difficulty that I seem to be having is that the data is not ...
1
vote
1answer
128 views

jsoup - how to check if a webpage exist or not

Hi stackoverflow users. When i was doing web scraping, i encountered a problem that, when i scrape through a series of webpages of a particular site, with their URLs being ...
-1
votes
1answer
220 views

php - Fastest way to check presence of text in many domains (above 1000)

I have a php script running and using cURL to retrieve the content of webpages on which I would like to check for the presence of some text. Right now it looks like this: for( $i = 0; $i < ...
2
votes
3answers
195 views

Selenium between HTML tags

What's the best way to get all the HTML in a page that is created by Javascript to pass to BeautifulSoup? I'm currently using: from selenium import webdriver from selenium.common.exceptions import ...
1
vote
1answer
215 views

Is there a way to make more than 10K requests on Google search from the same IP?

I am currently working to an app that requires to scrape data from Google's search results. For example google.com/search?q=domain.com and so on. But Google blocks my IP address after making some ...
0
votes
4answers
152 views

Plain text table data organization

I have a plain text table like this. I need to group the result line so that the data is together in their respective columns. I can split the string (one line) on a space and then I will get an ...
0
votes
1answer
62 views

Nokogiri - slicing results

I'm building a scraper to pull stories from news sites. Here's an example from the BBC news site: require 'nokogiri' require 'open-uri' doc = Nokogiri::HTML(open('http://www.bbc.co.uk/news/')) ...
0
votes
2answers
95 views

Scrapy pipeline open_sider not being called

I see this question, and I see this question, but the official Scrapy page on pipelines mention nothing about signals. This is the code I have so far: import sqlite3 import datetime from scrapy ...
0
votes
0answers
68 views

Scraping of ASP.Net generated page having pagination using curl [duplicate]

Possible Duplicate: Screen Scraping of aspx page using curl I am new to screen scraping and working on an aspx page. On the page, there is pagination. I can scrap first page but can't next ...
-2
votes
2answers
499 views

Screen Scraping of aspx page using curl [closed]

I am using this code, and its not working. Please help $url = "http://www.riogrande.com/Category/Findings-and-Finished-Jewelry/132/Bails-and-Enhancers/472"; $file=file_get_contents($url); ...
0
votes
1answer
40 views

How can I accomplish this in Objective-C? Developing an app for a web-app with no API, how can I log users in?

I want to develop an iOS app for a website which has no API. Users can login to this website and view information, and download files. My app will be simply a native mobile interface for this website, ...
-1
votes
1answer
47 views

Screen Scrape Static Content

I have a counter on a website whose value I'd like to access using Javascript. The code I'm trying to reference looks like this: <span id="counter"> 0123 // This is the value I'm trying to ...
0
votes
2answers
182 views

Method for OCR of a screen region. SDK or application

I haven't found a solution yet. What I am trying to do is read specific numerical text values from a proprietary financial software platform. I have first tried accessibility and element spy methods, ...

1 3 4 5 6 7 33