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
13 views

Consequences of Screen Scraping Online Banking Websites

I am planning to develop a service which requires API from some banks but because they don't have it, I think my only option is to write one myself by screen scraping user's accounts if they enter ...
1
vote
0answers
9 views

Python - sockispy with mechanize (without monkeypatching)

I want to know if there is a way to get mechanize.Browser to use a socks proxy (tor) without having to do this. import socks, socket socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", port) ...
0
votes
1answer
36 views

Inconsistent spacing when building a CSV file

I'm scraping (screen-scraper) this raw text data from a site and I have to format it, then transfer it to a CSV file. The raw text data is in the correct format but the line breaks don't carry over. ...
0
votes
2answers
17 views

How can I programmatically interact with a website that uses an AJAX JBoss RichTree component?

I'm writing a python script to do some screen scraping of a public website. This is going fine, until I want to interact with an AJAX-implemented tree control. Evidently, there is a large amount of ...
0
votes
1answer
26 views

Urllib2 gets different html source

I want the HTML of http://fiverr.com/logo_business/design-a-killer-high-quality-effective-and-custom-made-logo-for-your-company-business-website-or-personal-use using urllib2. But it doesn't give me ...
-2
votes
0answers
18 views

scraping table from another website

How can I scrape this table with SIMPLE DOM HTML as there no TR class etc? <table width='100%' border='0' cellspacing='0' cellpadding='0' id='cashRatesTable'> <tr class='tableHeader'> ...
0
votes
0answers
18 views

Access all ecommerce products

I am trying to develop something for which i need access to the list of all e commerce products available. For instance, http://junglee.com is able to display over 18 million products and its specs. I ...
0
votes
0answers
19 views

Is there any API or some other way for managing hotel inventory of yatra.com or makemytrip.com [closed]

I am working on a project in which a hotel owner that has its hotel listed on yatra.com,makemytrip.com etc. to sync his local rooms inventory(availability/prices) to the listed sites. I searched the ...
0
votes
2answers
54 views

how are javascript based websites different?

I am trying to scrape the content of a website which seems to be working on javascript or some other technology. I am using xpath to find the content on the page. I can see the content using firebug ...
0
votes
0answers
69 views

How to scroll down with Phantomjs to load dynamic content

I am trying to scrape links from a page that generates content dynamically as the user scroll down to the bottom (infinite scrolling). I have tried doing different things with Phantomjs but not able ...
0
votes
1answer
25 views

Yahoo Screenscraping software

Some time ago, I came across something Yahoo offers to do screen scraping and for the life of me I cannot find it again. It is not Pipes and it is not YQL and I know I found it on Stack. Can someone ...
0
votes
0answers
39 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 ...
1
vote
1answer
48 views

imacros firefox loop through results and extract

I am using the imacros free plugin for firefox to scrape data from a javascript search form on a website. Here is a breakdown of my current macro which works to extract one set of results for me. ...
-1
votes
1answer
61 views

Python Yahoo Stock Exchange (Web Scraping)

I'm having trouble with the following code, it's suppose to print the stock prices by accessing yahoo finance but I can't figure out why its returning empty strings? import urllib import re ...
0
votes
2answers
61 views

Bytes to String or String to Bytes?

I have read some of the examples here but I am such a novice I don't understand some of them and others don't seem to work(probably because I'm such a novice but... import urllib.request import re ...
0
votes
2answers
79 views

grab elements with containing text nokogiri xpath

Still learning how to use nokogiri and so far can grab by css elements.There is a page I want to scrape http://www.bbc.co.uk/sport/football/results, i want to get all the results for the barclays ...
0
votes
0answers
24 views

scraping a website that has a js error with pjscrape. is it possible?

I'm trying to scrape this website: http://www.creative-med.com/vademecum.php?cadena1=vademecum/contenido/productos/producto.php?pais=ven&cadena2=1594&pais=ven this is the last script I ran ...
1
vote
1answer
43 views

How can I retrieve and parse just the html returned from an URL?

I want to be able to programmatically (without it displaying in the browser) send an URL such as ...
1
vote
1answer
54 views

Scraping data after filling out form?

I'm doing a little project for my class and I'm just a beginner, so please forgive me if I mix up some of my terminology. Basically, I'm creating an interactive journey planner for my city's public ...
0
votes
2answers
73 views

automate login / scrape files from a website

I need to figure out how to scrape a website and download files from an authenticated website. A script needs to login to this website using a username/password navigate through the pages to get ...
0
votes
0answers
46 views

Using Flash for website… won't allow access to outside sources… how to build api?

Like a complete idiot, I've spent the past month developing a flash based website. Everything was fine and dandy until I realized that when I publish the document.. it does not function at all. My ...
-3
votes
0answers
27 views

How to get all the posts from IMDB forum for a movie?

For a project I want to get all the posts from IMDB forum for some movie. What is the best way to do it? Thanks! Are there some java or python scripts to do it?
0
votes
1answer
33 views

Debugging ScraperWiki scraper (producing spurious integer)

Here is a scraper I created using Python on ScraperWiki: import lxml.html import re import scraperwiki pattern = re.compile(r'\s') html = ...
1
vote
2answers
52 views

How to send JavaScript and Cookies Enabled in Scrapy?

I am scraping a website using Scrapy which require cooking and java-script to be enabled. I don't think I will have to actually process javascript. All I need is to pretend as if javascript is ...
2
votes
1answer
90 views

Scrapping ajax pages using python

I've already seen this, but python isn't mentioned there. I considered using scrapy, i believe they have some docs on that subject, but as you can see the website is down. So i don't know what to do. ...
1
vote
0answers
42 views

Node.js Scraping: Not receiving query string on 302 redirect location

I've tried Node.js' HTTPS class and also Mikeal's "request" library. Either way, when scraping a certain website that returns a 302 response, I can not retrieve the query string parameters. See below ...
0
votes
2answers
63 views

Evaluate javascript on a local html file (without browser)

This is part of a project I am working on for work. I want to automate a Sharepoint site, specifically to pull data out of a database that I and my coworkers only have front-end access to. I FINALLY ...
0
votes
1answer
29 views

PHP Simple DOM find not working

This had me stuck for a while so I thought I would post it. My issue was that my find-> was not working correctly and $product_name was coming up null require 'mysql_con.php'; require ...
-2
votes
0answers
30 views

How does a computer communicate with the monitor? [closed]

Hoping for some help with this question, basically I want to know the communication process between the computer and a monitor. Computer sends Unicode strings to the monitor to be displayed? ASCII?
0
votes
3answers
55 views

Practice scrapping

(python 2.7.4) I would like to print only what I have called url if it contains the word 'watch' I have conducted some trial and error to no avail. Also I would like to know if its possible to ...
1
vote
2answers
129 views

Using the inspect element feature in google chrome to scrape web sites [closed]

I am trying to scrape a web site. The traditional HTML parsing through "urllib2.urlopen" from Python or "htmlTreeParse" in R, fail to get the data from the web page. This is done intentionally by the ...
1
vote
0answers
76 views

Web data extraction and data mining; Scraping vs Injection and how to get data.. like yesterday

I feel like i should almost give a friggin synopsis to this/these lengthy question(s).. I apologize if all of these questions have been answered specifically in a previous question/answer post, but I ...
-5
votes
0answers
26 views

Interact with the tool “webBrowser” [closed]

I have a program written in C# and at the end I need to show site by tool webBrowser1 has been introduced already. But I need to fill the boxes "cells" table displayed in the page or the site open ...
0
votes
0answers
67 views

get facebook page full public photostream

there's only one similar question and it's not been answered. not for me at least. There are public pages on Facebook, suppose i want to get their photostream ? their album pictures ? I don't see how ...
0
votes
2answers
39 views

Scraping value from field on a page

I'm scraping a page that has a link like this: <a id="something" href="place" class="thing" data="12345"> <span class="otherthing"></span></a> I'd like to extract the number ...
-2
votes
0answers
56 views

Please help me with this PHP scraping script [closed]

OK. So I have a big problem. I am scraping for sale posts from craigslist.com by title and lowest price. It seems like every other link it scrapes it only shows as a "-" on my site. If anyone could ...
1
vote
3answers
49 views

Javascript / jQuery - Scraping IMG SRC

I'm trying to scrape data using Javascript and the jQuery library. So far so good. I am able to scrape data from between tags. For example I want to get the data from <li> tags, I do so as ...
0
votes
1answer
91 views

Using Scrapy to extract data from Detail Pages

I am trying to crawl telephone numbers of agencies from this site: List View http://www.authoradvance.com/agencies/ Detail View http://www.authoradvance.com/agencies/b-personal-management/ The ...
0
votes
1answer
73 views

Using Jsoup to populate a ListView

I am trying to parse a website using Jsoup, take the info I get and populate a ListView. The HTML looks like this: <ul class="list_view"> <li> <a href="/username/" > ...
1
vote
0answers
153 views

casperJS how to click multiple links in a table while collecting data from the web /.click() doesn't work?

I want to scrape some web data using CasperJS. The data is in a table, in each row there is a link leading to a page with more detail. In the script there is a loop iterating through all table rows. I ...
1
vote
2answers
82 views

Full or incremental scrapping - What do people use?

I have a question in regardes to scrapping content off websites. Lets imagine in this example we are talking about content on classified style sites, like for example Amazon or Ebay. Important notes ...
-1
votes
1answer
42 views

IO Error while scrapping web

from urllib import urlopen from bs4 import BeautifulSoup import re # Copy all of the content from the provided web page webpage = ...
0
votes
1answer
100 views

How can I echo a scraped div in PHP?

How do I echo and scrape a div class? I tried this but it doesn't work. I am using cURL to establish the connection. How do I echo it? I want it just how it is on the actual page. $document = new ...
1
vote
2answers
88 views

Web scraping with python and sqlite. How to store scraped data effectively?

I want to scrape some specific webpages on a regular basis (e.g. each hour). This I want to do with python. The scraped results should get inserted into an SQLite table. New info will be scraped but ...
0
votes
0answers
80 views

How to scrape or parse Iframe content to get specific values

I get Iframe link http:\\abc.com?=blahblahiframelink from a third party rest service. I want to extract multiple values from content of that Iframe. Here is simplified html. Please understand that ...
0
votes
1answer
46 views

Divide and scrape <tr> groups separated by unique <td> using beautiful

So the webpage that I'm trying to scrape is something like this: ... <tr><td colspan=3><BR><div class="list">Foo:</div></td></tr> <tr><td><img ...
0
votes
1answer
60 views

Automating approved screen scraping with a twist

I have approval to scrape some data from a third party website. The scraping works great, however now there is a road block due to the new login process. The new login process is a mixture of ...
0
votes
1answer
57 views

iOS - Aggregating scraped data in a unique way, will I be rejected?

I am building some services that will scrape data from a number of websites and be stored into a database. I am then using services to call this data into an iOS app and display it in an organized ...
2
votes
1answer
305 views

CasperJS/PhantomJS much slower than Curl

When I tried curl www.yelp.com it takes 1.1 secs. However retrieving the page using CasperJS takes over a minute! Is this normal? How do I find out what's slowing casper/phantom down? I am suspecting ...
0
votes
2answers
176 views

CasperJS passing data back to PHP

CasperJS is being called by PHP using an exec() command. After CasperJS does its work such as retrieving parts of a webpage, how can the retrieved data be returned back to PHP?

1 2 3 4 5 33