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
1answer
72 views

Retrieving amazon order history programmatically in java

I want to log into my amazon account and retrieve purchase history programmatically in java. Did a lot of research and came across screen scraping. Is this the only way or does amazon provide apis for ...
0
votes
2answers
74 views

Building a scraper, what if a page doesn't use jQuery?

I'm working on a scraper and I'd like to scrape certain sites but using jQuery on an ID or class doesn't return anything, meaning they're not using jQuery on their site. How do I build my scraper ...
0
votes
1answer
99 views

Find all possible links in a website / Screen-Web Scraping with Python

Sort of an open-ended question here. I needed to go across a Job site and search for a Job Description tag and a Skill requirement (I'm done with this). I basically wanted to know, how do I crawl ...
0
votes
1answer
158 views

simple_html_dom.php

I am using "simple_html_dom.php" to scrap the data from the Wikipedia site. If I run the code in scraperwiki.com it's throwing an error as exit status 139 and if run the same code in my xampp sever, ...
0
votes
3answers
212 views

Code for web crawling with Python 2.7.3 in mac terminal?

I am a social scientist and a complete newbie/noob when it comes to coding. I have searched through the other questions/tutorials but am unable to get the gist of how to crawl a news website targeting ...
0
votes
0answers
46 views

I am making a Windows Sidebar gadget..cant figure out why my code wont work

<body style="width:250px;height:250px;"> <div id="wrapper"> <p> Latest jQuery Snipplr Snippets: <ul id="jquery_snippets"> ...
0
votes
2answers
34 views

Is it possible to detect SSL-Sites that have included “insecure content” in PhantomJS

I want to automatically check if a HTTPS page includes "insecure content" eg HTTP content. Is there a way to automatically determine that? It seems phantom just loads the content and ignores that ...
4
votes
2answers
88 views

Scraping only main contents of webpage (ignore header, footer & sidebars)

I am familiar with scraping and using XPATH in php to parse the DOM to get what i want from a page. What i would like to hear are some suggestions on how i could programatically ignore the header, ...
1
vote
2answers
275 views

PHP Simple HTML Dom Parser find() crashing while traversing past a null element

I'm trying to chain Simple HTML DOM Parser find() to traverse through HTML, however it seems to crash when one of the children is absent. For example: $obj = $page->find('#headings', ...
0
votes
1answer
89 views

How to use Goutte

Issue: Cannot fully understand the goutte web scraper. Request: Can someone please help me understand or provide code to help me better understand how to use goutte the web scraper? I have read over ...
0
votes
2answers
58 views

How to: Python script that will 'click' on a portion of my screen, and then do key commands?

Python noobie. I'm trying to make Python select a portion of my screen. In this case, it is a small window within a Firefox window -- it's Firebug source code. And then, once it has selected the ...
0
votes
1answer
73 views

Scraping data with simple_html_dom class in PHP

I am trying to scrape the data from the results on a search from this website I have been told that the best way to do this is to use the simple_html_dom class from ...
1
vote
0answers
115 views

Logging into website with multiple pages using Python (urllib2 and cookielib)

I am writing a script to retrieve transaction information from my bank's home banking website for use in a personal mobile application. The website is laid out like so: https:/ ...
0
votes
1answer
147 views

Php Scraping data from a website

I am very new to programming and need a little help with getting data from a website and passing it into my PHP script. The website is http://www.birthdatabase.com/. I would like to plug in a name ...
0
votes
1answer
139 views

Scraping with Node.js

I have a strange problem- Because of the strange way that this site presents time data, I wanted to write a small parser. I was testing my code on one specific url - ...
0
votes
0answers
249 views

Request Payload in a POST request

I am trying to scrape a PHP website and instead of Form Data i am seeing Payload requests in Header Section. What is a Payload Request? I am using Developer Tools from Chrome to analyse the Data. For ...
1
vote
0answers
45 views

Scrapy Case : Incremental Update of Items

Please help me solve following case: Imagine a typical classified category page. A page with list of items. When you click on items you land on internal pages.Now currently my crawler scrapes all ...
0
votes
1answer
184 views

Scraping Table with Nokogiri and need JSON output

So, I have a table with multiple rows and columns. <table> <tr> <th>Employee Name</th> <th>Reg Hours</th> <th>OT Hours</th> </tr> ...
0
votes
1answer
35 views

Is there a standard way to randomly search my database items with a cron until complete, then reset in PHP?

I already have a sceen scraper built using PHP cURL, tied to a mySQL database. I have stored products that need to be updated weekly rather than what I have now (a form that I input the url/product ...
0
votes
0answers
52 views

Installing xPDF online to a Webserver

I want to use XPDF (http://foolabs.com/xpdf/download.html) to parse text from PDF. I 've used the Win VErsion so far but i am forced to migrate my script on an online server. Can anyone tell me ...
0
votes
0answers
62 views

Web Scrape multiple directories of text files from web site

I have a need to Down load several 1000 individual text files from a Climate repository. Each Weather Station has a directory, where simple ascii text files are stored, one for each day since the ...
0
votes
1answer
41 views

Multiline attributes with jsdom

is it possible to get the value of multiline attributes with jsdom (I use it with Node.js+JQuery)? The site to scrape includes this HTML: <li><a data-title="<strong>hello world this ...
-2
votes
1answer
62 views

Are Web scrapers limited by CPU, RAM or IO? [closed]

When a web scraper is written in PHP (running off nginx, ubuntu), and we want to have many scrapers scraping many different sites at a time, what will be the limiting factor? CPU, RAM or Disk IO?
0
votes
1answer
58 views

Fetch image from non direct HTML link

We have a couple SSIS jobs which nicely fetch images and various expected graphics on websites. Can't figure out how to fetch an image from the following site (sample). ...
0
votes
2answers
52 views

Create an array from data recieved

I am trying to learn how to get data via a screen scrape and then save it to a model.So far I can grab the data.I say this as if i do puts home_team I get all the home teams returned get_match.rb ...
0
votes
0answers
229 views

scraping an ASP website with php using cURL

I am completely new to asp scraping and I need your help for the following code snippet: Aim of the code is to scrape the 2nd tab of a website that is retrieved via a doPostBack call. By using ...
0
votes
2answers
351 views

Need to pull data from a website…web query? macro?

I have a list of every DOT # (Dept. of Trans.) in the country. I want to find out insurance effective date for each one of these companies. If you go to http://li-public.fmcsa.dot.gov --> "continue" ...
0
votes
0answers
76 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 ...
4
votes
1answer
387 views

Logic code in PHP/Laravel with Job Queue system

I'm making a web scraper using Laravel 3 and have a queue system resque. Question: Where should I place the scraping logic code? In the worker/job class? In a library class that is called ...
2
votes
1answer
112 views

detect if a web page is changed

In my python application I have to read many web pages to collect data. To decrease the http calls I would like to fetch only changed pages. My problem is that my code always tells me that the pages ...
1
vote
2answers
75 views

What is the best way to modify the JavaScript included in a scraped web page?

During a site scraping, I discovered several scraped functions in JavaScript that I need to modify because the code uses a relative path: /UserControl/bla I need to modify it to use absolute path: ...
0
votes
3answers
343 views

Scraping complete web site for data within specific div tag where url includes string

I own a webshop and one of my suppliers is kind enough to give me a CSV file with product model numbers, price and title but they can't give me database dumps including their product descriptions. I ...
0
votes
0answers
209 views

Web Scraping in Python and Beautiful Soup

I have been using Python's Beautiful Soup library to scrape pages, however I am running into a few limitations. I am scraping different (usually news) websites all the time and do not know ahead of ...
0
votes
0answers
225 views

Getting data from a dynamic website online [closed]

I would like to get some data from a website. It is updated every few seconds with new information using JQuery and get requests. Actually, it is just one <span> tag that I am interested in ...
0
votes
1answer
50 views

Bug with strtotime()

The Simple HTML DOM library is used to extract the timestamp from a webpage. strtotime is then used to convert the extracted timestamp to a MySQL timestamp. Problem: When strtotime() is usede on a ...
0
votes
1answer
77 views

How to get raw XPath from Chrome inspector?

When I use Google Chrome's super-cool element inspector to find the XPath of an element, it returns things that don't exist in the original HTML, like <tbody>. Clearly, Chrome infers certain ...
0
votes
1answer
66 views

scraperwiki: why does my scraper work for 1 url but not another?

This is my first scraper https://scraperwiki.com/scrapers/my_first_scraper_1/ I managed to scrape google.com but not this page. http://subeta.net/pet_extra.php?act=read&petid=1014561 any ...
0
votes
1answer
91 views

How to extract strange WWW source code using lxml and XPath

I'm running small project which concern extracting data from WWW. I found ww with strange source code inside: <adr:terc xmlns:ks="http://asseco.pl/xml/rpm/ksiegaPodmiot/2011/04/08/" ...
1
vote
1answer
69 views

Python to read Javascript Date

I am using BeautifulSoup to get data from a webpage. The webpage provides a date, which I see when I open the page in Firefox. However, when I view page source there is no date, just some javascript ...
1
vote
0answers
126 views

how to set cookies in curl using LIB_http

I'm receiving cookies message again & again while sraping the page manta.com message is Array ( [FILE] => Oops. Before you can move on, please activate your browser cookies. I am using cookies ...
0
votes
3answers
48 views

Why isn't PHP continuing to run through these urls?

so I have the following PHP. Basically, I'm getting similar data from multiple pages of a website (the current number of homeruns from a website that has a bunch of baseball player profiles). The JSON ...
0
votes
1answer
100 views

PHP screen scraper giving SEGFAULT. Would Ruby/Python be better? [closed]

I'm building a scraper using ScraperWiki, full code is here: https://scraperwiki.com/scrapers/fashfinder/edit/# When running the scraper, everything works fine until the "for" loop at the end of the ...
0
votes
1answer
33 views

Would like help extracting from model data nested inside javascript text filtered with Mechanize

Using the following: LowEast = agent.get('https://rs.alarmnet.com/TotalConnectComfort/Device/Control/12345') puts LowEast.parser.xpath("//script[@type='text/javascript']") Returns what follows, ...
0
votes
5answers
137 views

Is it possible to run jQuery on server side?

I am working on web page scraping has AJAX pagination's implemented, Since website is developed in asp i.e. page with extension .aspx I have tried submitting pagination forms to get data from other ...
2
votes
3answers
58 views

regarding regexp in PHP

I'm decent at PHP(far from an expert) but a pure novice when it comes to regexp and scraping. I wanted to do a little bit of scraping to help with some research and to educate myself, but I've ran ...
-4
votes
2answers
118 views

Scraping PDF using python [closed]

I am trying to scrape the PDF which contains data in table format. Basically trying to convert that pdf to csv.Using Python Thanks in Advance
1
vote
0answers
222 views

Ghost.py not finding PySide?

I'm trying to get started with the Ghost.py headless browser on a Mac. I installed Ghost.py and its dependencies using these links/commands: Qt 5.0.1 for Mac, has a GUI installer PySide 1.1.0, ...
0
votes
0answers
68 views

scraping way2sms with mechanize

I am trying to send an sms with by scraping way2sms.com, but I am unable to login into way2sms.com using mechanize. I am using following code to submit the login form. import mechanize br = ...
0
votes
1answer
122 views

PHP FOR loop stops after 2 loops, exit status 139

I'm building a scraper with Scraper Wiki, here: https://scraperwiki.com/scrapers/fashfinder/edit/# Without boring you with too many details, I load up about 120 links into an array, $allLinks. Then, ...
0
votes
1answer
65 views

PHP - Using variables and objects within a scraper

I'm new to PHP and have tried my best to use the PHP reference guide, but I'm clearly missing something here. Here's my workflow: I have an array with about 120 links stored inside I want to scrape ...

1 2 3 4 5 33