active questions tagged screen-scraping - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T00:17:12Z http://stackoverflow.com/feeds/tag/screen-scraping http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1936495/website-scraping-using-jquery-and-ajax 0 Website scraping using jquery and ajax Joe 2009-12-20T18:06:04Z 2009-12-20T18:43:07Z <p>Hello,</p> <p>I want to be able to manipulate the html of a given url. Something like html scraping. I know this can be done using curl or some scraping library.But i would like to know if it is possible to use jquery to make a get request to the url using ajax and retrieve the html of the url, and run jquery code on the html returned ?</p> <p>Thank You</p> http://stackoverflow.com/questions/1934088/rotating-proxies-for-web-scraping 0 Rotating Proxies for web scraping Jacob 2009-12-19T20:46:21Z 2009-12-19T21:30:18Z <p>I've got a python web crawler and I want to distribute the download requests among many different proxy servers, probably running squid (though I'm open to alternatives). For example, it could work in a round-robin fashion, where request1 goes to proxy1, request2 to proxy2, and eventually looping back around. Any idea how to set this up?</p> <p>To make it harder, I'd also like to be able to dynamically change the list of available proxies, bring some down, and add others.</p> <p>If it matters, IP addresses are assigned dynamically.</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1918790/web-scraping-parsing-of-college-course-site 0 web scraping/parsing of college course site tom smith 2009-12-17T00:39:13Z 2009-12-17T01:15:47Z <p>Trying to parse/scrape the course site for memphis. The site is "https://spectrumssb2.memphis.edu/pls/PROD/bwckgens.p_proc_term_date". It appears to be some sort of javascript issue, or dynamic generation of the text. I can see the underlying DOM structure using livehttpdheaders/Firefox, but not when I simply view the underlying source/text of the page..</p> <p>Thoughts/Comments/Pointers would be appreciated...</p> http://stackoverflow.com/questions/1916711/programmatic-python-browser-with-javascript 0 Programmatic Python Browser with JavaScript Claudiu 2009-12-16T18:37:08Z 2009-12-16T20:43:00Z <p>I want to screen-scrape a web-site that uses JavaScript. </p> <p>There is <a href="http://wwwsearch.sourceforge.net/mechanize/" rel="nofollow">mechanize</a>, the programmatic web browser for Python. However, it (understandably) doesn't interpret javascript. Is there any programmatic browser for Python which does? If not, is there any JavaScript implementation in Python that I could use to attempt to create one?</p> http://stackoverflow.com/questions/1915273/how-can-i-save-the-screen-as-an-image-from-a-net-forms-application-in-c 0 How can i save the screen as an image from a .NET forms application in C# Chakravarthy 2009-12-16T15:15:26Z 2009-12-16T15:21:40Z <p>Hi,</p> <p>I have a .NET 3.5 Windows forms application. When the user keys in data and clicks 'Save', i want to save the entire form as an image file.</p> <p>How can i do this ?</p> <p>Thanks, Chak.</p> http://stackoverflow.com/questions/1764987/paid-api-to-get-incoming-links-to-a-website 1 Paid API to get incoming links to a website? Brian Armstrong 2009-11-19T17:14:44Z 2009-12-15T19:35:05Z <p>I'm working on an SEO app that (among other things) shows the number of incoming links to your site over time.</p> <p>There are a few ways to get this data. Scraping Google "link:yoursite.com" results gives you some (not all) of the links they know about, but they aren't too happy if you are doing lots of scraping. Similarly Yahoo has their site explorer API calls which give you 20,000 queries per day I think, but it has a non commercial use limitation.</p> <p>Are there any services out there which provide this information in some kind of API call? Probably a pay service would be best, need something reliable for commercial use. Basically it would have to be an index of the web that was updated fairly regularly selling API access to it. Or any other ways people get this info short of writing a SETI at home type app to make a bot army of scrapers?</p> http://stackoverflow.com/questions/1908378/trouble-scraping-web-page-with-malformed-content 0 Trouble Scraping Web Page With Malformed Content Joe 2009-12-15T15:54:22Z 2009-12-15T16:13:21Z <p>I have written c# code which utilizes the HtmlAgilityPack library in order to scrape a page located at: <a href="http://www.mongabay.com/cities%5Furban%5F02.htm" rel="nofollow">World's Largest Urban Areas (Page 2)</a>. Unfortunately the page consists of malformed content. </p> <p>I'm at an impasse on how to scrape this page. The current code I have (appearing below) freezes on parsing the HTML:</p> <pre><code> HtmlNodeCollection cityRecords = _htmlDocument.DocumentNode.SelectNodes("//table[@class='boldtable']//tr[position() != 1]"); CityNodes = (from node in cityRecords.Descendants() where node.Name == "td" select node).ToList(); </code></pre> <p>The goal is to parse each and every city listed on the page with each of the data points; nothing more. Looking for recommendations on how to modify the above code or use another freely available library.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1700415/whats-the-best-way-to-write-a-maintainable-web-scraping-app 4 What's the best way to write a maintainable web scraping app? Benj 2009-11-09T11:17:10Z 2009-12-14T22:40:32Z <p>I wrote a perl script a while ago which logged into my online banking and emailed me my balance and a mini-statement every day. I found it very useful for keeping track of my finances. The only problem is that I wrote it just using perl and curl and it was quite complicated and hard to maintain. After a few instances of my bank changing their webpage I got fed up of debugging it to keep it up to date.</p> <p>So what's the best way of writing such a program in such a way that it's easy to maintain? I'd like to write a nice well engineered version in either Perl or Java which will be easy to update when the bank inevitably fiddle with their web site.</p> http://stackoverflow.com/questions/669745/screen-scrape-web-page-that-displays-data-page-wise-using-mechanize 0 Screen scrape web page that displays data page wise using Mechanize MOZILLA 2009-03-21T18:40:40Z 2009-12-12T11:10:08Z <p>I am trying to screen scrape a web page (using Mechanize) which displays the records in a grid page wise. I am able to read the values displayed in the first page but now need to navigate to the next page to read appropriate values.</p> <pre><code>&lt;tr&gt; &lt;td&gt;&lt;span&gt;1&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$2')"&gt;2&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$3')" &gt;3&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$4')" &gt;4&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$5')" &gt;5&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$6')"&gt;6&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$7')" &gt;7&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$8')"&gt;8&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$9')" &gt;9&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$10')" &gt;10&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$11')"&gt;...&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt; </code></pre> <p>I am able to get through all the links but when I try this:-</p> <pre><code>links = (row/"a") links.each do |link| agent.click link.attributes['href'] # This fails agent.click link # This also fails end </code></pre> <p>Reason is that agent.click expects the URL as an argument.</p> <p>Is there a way where we can read all the values when they are displayed page wise ? If not how can we have such a click action when the href is a postback and not a URL??</p> http://stackoverflow.com/questions/713827/how-can-i-screen-scrape-with-perl 1 How can I screen scrape with Perl? Sakthivel 2009-04-03T13:07:37Z 2009-12-10T14:54:24Z <p>I need to display some values that are stored in a website, for that I need to scrape the website and fetch the content from the table. Any ideas?</p> http://stackoverflow.com/questions/1877920/how-can-i-scrape-the-content-present-on-a-wave-validator-page-to-appear-on-my-pag 0 How can I scrape the content present on a WAVE validator page to appear on my page? Robbie 2009-12-10T00:34:56Z 2009-12-10T01:22:16Z <p>I've tried fopen, fread, file_get_contents, curl, and none of those work. I keep getting Forbidden errors. There has got to be a way around it. Anyone?</p> http://stackoverflow.com/questions/557598/scrape-and-generate-rss-feed 2 Scrape and generate RSS feed mofle 2009-02-17T16:19:08Z 2009-12-10T01:15:32Z <p>I use <a href="http://simplehtmldom.sourceforge.net/" rel="nofollow">Simple HTML DOM</a> to scrape a page for the latest news, and then generate an RSS feed using this <a href="http://www.phpclasses.org/browse/package/4427.html" rel="nofollow">PHP class</a>.</p> <p>This what I have now:</p> <pre><code>&lt;?php // This is a minimum example of using the class include("FeedWriter.php"); include('simple_html_dom.php'); $html = file_get_html('http://www.website.com'); foreach($html-&gt;find('td[width="380"] p table') as $article) { $item['title'] = $article-&gt;find('span.title', 0)-&gt;innertext; $item['description'] = $article-&gt;find('.ingress', 0)-&gt;innertext; $item['link'] = $article-&gt;find('.lesMer', 0)-&gt;href; $item['pubDate'] = $article-&gt;find('span.presseDato', 0)-&gt;plaintext; $articles[] = $item; } //Creating an instance of FeedWriter class. $TestFeed = new FeedWriter(RSS2); //Use wrapper functions for common channel elements $TestFeed-&gt;setTitle('Testing &amp; Checking the RSS writer class'); $TestFeed-&gt;setLink('http://www.ajaxray.com/projects/rss'); $TestFeed-&gt;setDescription('This is test of creating a RSS 2.0 feed Universal Feed Writer'); //Image title and link must match with the 'title' and 'link' channel elements for valid RSS 2.0 $TestFeed-&gt;setImage('Testing the RSS writer class','http://www.ajaxray.com/projects/rss','http://www.rightbrainsolution.com/images/logo.gif'); foreach($articles as $row) { //Create an empty FeedItem $newItem = $TestFeed-&gt;createNewItem(); //Add elements to the feed item $newItem-&gt;setTitle($row['title']); $newItem-&gt;setLink($row['link']); $newItem-&gt;setDate($row['pubDate']); $newItem-&gt;setDescription($row['description']); //Now add the feed item $TestFeed-&gt;addItem($newItem); } //OK. Everything is done. Now genarate the feed. $TestFeed-&gt;genarateFeed(); ?&gt; </code></pre> <p>How can I make this code simpler? Right know there is two foreach statements, how can I combine them?</p> <p>Because the news scraped is in Norwegian, I need to apply the html_entity_decode() on the title. I've tried It here, but I couldn't get it to work:</p> <pre><code>foreach($html-&gt;find('td[width="380"] p table') as $article) { $item['title'] = html_entity_decode($article-&gt;find('span.title', 0)-&gt;innertext, ENT_NOQUOTES, 'UTF-8'); $item['description'] = "&lt;img src='" . $article-&gt;find('img[width="100"]', 0)-&gt;src . "'&gt;&lt;p&gt;" . $article-&gt;find('.ingress', 0)-&gt;innertext . "&lt;/p&gt;"; $item['link'] = $article-&gt;find('.lesMer', 0)-&gt;href; $item['pubDate'] = unix2rssdate(strtotime($article-&gt;find('span.presseDato', 0)-&gt;plaintext)); $articles[] = $item; } </code></pre> <p>Thanks :)</p> http://stackoverflow.com/questions/1873207/in-asp-net-how-to-screen-scrape-multiple-records-when-paging-is-implemented-for-t 0 In asp.net how to screen scrape multiple records when paging is implemented for the results? Sunny 2009-12-09T11:14:43Z 2009-12-09T11:19:12Z <p>I know how to screen scrap a page and read the data. But,I need help on how to get all results when paged.</p> <p>Will HTML Agility Pack help in this issue or any other tools available for this or any other way?</p> http://stackoverflow.com/questions/1738673/streaming-the-desktop 1 Streaming the desktop StackedCrooked 2009-11-15T20:15:16Z 2009-12-09T11:08:18Z <p>I want to create a C++ cross-platform (Windows and MacOS X) application that sends the screen as a video stream to a server.</p> <p>The application is needed in the context of lecture capture. The end result will be a Flash based web page that plays back the lecture (presenter video and audio + slides/desktop).</p> <p>I am currently exploring a few options:</p> <ul> <li>Bundle the VLC (the Video Player) binary with my app and use its desktop streaming features.</li> <li>Use the Qt Phonon library, but it doesn't seem to be powerful enough.</li> <li>Send individual screenshots plus a timestamp to the server instead of a video stream. The server then would have to create the video stream.</li> <li>Implement it in Java and use Xuggler (<a href="http://code.google.com/p/bigbluebutton/" rel="nofollow">BigBlueButton</a> uses it for their Desktop Sharing feature)</li> <li>...?</li> </ul> <p>I would greatly appreciate your insights/comments on how to approach this problem.</p> http://stackoverflow.com/questions/1743155/curl-screen-scrape-delivery-tracking-details-from-canada-post 0 CURL / screen scrape delivery tracking details from Canada Post BrynJ 2009-11-16T16:05:51Z 2009-12-09T02:57:55Z <p>I need to obtain delivery tracking details from the Canada Post website, which does not offer an API.</p> <p>I've formulated a URL that when entered into a browser correctly returns the tracking information, but I can't get the request to function with CURL (it returns a 500 We're Sorry page).</p> <pre><code> class cURL { var $headers; var $user_agent; var $compression; var $cookie_file; var $proxy; function cURL($cookies=TRUE,$cookie='cookies.txt',$compression='gzip',$proxy='') { $this->headers[] = 'Accept: image/gif, image/x-bitmap, image/jpeg, image/pjpeg'; $this->headers[] = 'Connection: Keep-Alive'; $this->headers[] = 'Content-type: application/x-www-form-urlencoded;charset=UTF-8'; $this->user_agent = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)'; $this->compression=$compression; $this->proxy=$proxy; $this->cookies=$cookies; if ($this->cookies == TRUE) $this->cookie($cookie); } function cookie($cookie_file) { if (file_exists($cookie_file)) { $this->cookie_file=$cookie_file; } else { fopen($cookie_file,'w') or $this->error('The cookie file could not be opened. Make sure this directory has the correct permissions'); $this->cookie_file=$cookie_file; fclose($this->cookie_file); } } function get($url) { $process = curl_init($url); curl_setopt($process, CURLOPT_HTTPHEADER, $this->headers); curl_setopt($process, CURLOPT_HEADER, 0); curl_setopt($process, CURLOPT_USERAGENT, $this->user_agent); if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEFILE, $this->cookie_file); if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEJAR, $this->cookie_file); curl_setopt($process,CURLOPT_ENCODING , $this->compression); curl_setopt($process, CURLOPT_TIMEOUT, 30); if ($this->proxy) curl_setopt($cUrl, CURLOPT_PROXY, 'proxy_ip:proxy_port'); curl_setopt($process, CURLOPT_RETURNTRANSFER, 1); curl_setopt($process, CURLOPT_FOLLOWLOCATION, 1); $return = curl_exec($process); curl_close($process); return $return; } function post($url,$data) { $process = curl_init($url); curl_setopt($process, CURLOPT_HTTPHEADER, $this->headers); curl_setopt($process, CURLOPT_HEADER, 1); curl_setopt($process, CURLOPT_USERAGENT, $this->user_agent); if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEFILE, $this->cookie_file); if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEJAR, $this->cookie_file); curl_setopt($process, CURLOPT_ENCODING , $this->compression); curl_setopt($process, CURLOPT_TIMEOUT, 30); if ($this->proxy) curl_setopt($process, CURLOPT_PROXY, $this->proxy); curl_setopt($process, CURLOPT_POSTFIELDS, $data); curl_setopt($process, CURLOPT_RETURNTRANSFER, 1); curl_setopt($process, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($process, CURLOPT_POST, 1); $return = curl_exec($process); curl_close($process); return $return; } function error($error) { echo "<b>cURL Error</b><br>$error"; die; } } $cc = new cURL(); $test = $cc->get('http://www.canadapost.ca/cpotools/apps/track/personal/findByTrackNumber?trackingNumber=x0x0x0x0x0x0x0&trackingType=trackPersonal'); echo $test; </code></pre> <p><strong>[UPDATE]</strong> after removing the Accept header line as per Tim's reply, I now get a page with the following 'You are currently visiting our Basic Site. This site is used for low-bandwidth connections, mobile devices and alternative browsers.' - but, again, no tracking information. </p> http://stackoverflow.com/questions/1868260/unit-tests-for-screen-scraping 4 unit tests for screen-scraping? Chris 2009-12-08T16:48:13Z 2009-12-08T19:41:14Z <p>I'm new to unit testing so I'd like to get the opinion of some who are a little more clued-in.</p> <p>I need to write some screen-scraping code shortly. The target system is a web ui where there'll be copious HTML parsing and similar volatile goodness involved. I'll never be notified of any changes by the target system (e.g. they put a redesign on their site or otherwise change functionality). So I anticipate my code breaking regularly.</p> <p>So I think my real question is, how much, if any, of my unit testing should worry about or deal with the interface (the website I'm scraping) changing?</p> <p>I think unit tests or not, I'm going to need to test heavily at runtime since I need to ensure the data I'm consuming is pristine. Even if I ran unit tests prior to every run, the web UI could still change between tests and runtime.</p> <p>So do I focus on in-code testing and exception handling? Does that mean to draw a line in the sand and exclude this kind of testing from unit tests altogether?</p> <p>Thanks</p> http://stackoverflow.com/questions/917298/javascript-server-under-xulrunner-fails 0 javascript server under XULRunner fails. dicroce 2009-05-27T18:27:09Z 2009-12-08T12:43:44Z <p>I'm trying to debug a DOM scraping packaged called <a href="http://simile.mit.edu/wiki/Crowbar" rel="nofollow">crowbar</a>. Anyhow, when I run I get:</p> <blockquote> <p>Error: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIServerSocket.asyncListen]" nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame :: chrome://crowbar/content/crowbar.js :: onLoad :: line 375" data: no]<br /> Source File: chrome://crowbar/content/crowbar.js<br /> Line: 375</p> </blockquote> <p>Basically, <code>asyncListen()</code> is throwing <code>NS_ERROR_NOT_INITIALIZED</code>. This is weird because the line of code immediately before this is a call to <code>init()</code>! I've tried adding:</p> <pre><code>netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); </code></pre> <p>just before the call to <code>asyncListen()</code> and it had no effect. Is this a security issue? (btw, in case it matters, this is on a Fedora box, running as root, with selinux disabled)... I've also tried a few different port numbers...</p> http://stackoverflow.com/questions/1286606/dynamic-screen-scraping-with-php-and-getting-past-javascript 0 Dynamic screen scraping with PHP and getting past javascript Mike 2009-08-17T07:39:02Z 2009-12-07T02:00:05Z <p>I have a website that provides a price comparison for students textbooks. I wrote a ruby script to go class by class and grab all the textbook information and store it in a database that the website can query for book information. The problem is that the bookstore keeps changing the books needed for each class so I need to figure out a way to get rid of the database and screen scrape on the fly with a script on a web page. </p> <p>The schools website uses ASP to dynamically load the books needed after the page has loaded and I don't know a lick of ASP to figure out how to reverse engineer it. I have poured through the source code and used firebug and have no clue where the data is being loaded from in order to go directly there. The URL my ruby script uses is <a href="http://bookstore.umbc.edu/SelectCourses.aspx?src=2&amp;type=2&amp;stoid=9&amp;trm=Fall%2009&amp;cid=4156" rel="nofollow">http://bookstore.umbc.edu/SelectCourses.aspx?src=2&amp;type=2&amp;stoid=9&amp;trm=Fall%2009&amp;cid=4156</a> where cid is the unique number for the class. When loaded with curl I get the following - bookscrooge.com/curltest.php (which is what you would expect).</p> <p>Anyone have any incite or looking to make a little quick cash / partner in a startup? Mike</p> http://stackoverflow.com/questions/1852725/net-screen-scraping-and-session 0 .Net Screen scraping and session Jignesh 2009-12-05T16:55:09Z 2009-12-05T17:14:33Z <p>I am trying to screen scrape using C#.It works for few times,after which i receive Session expired error.Any help will be appreciated.</p> http://stackoverflow.com/questions/1844829/how-can-i-read-and-parse-the-contents-of-a-webpage-in-r 0 How can I read and parse the contents of a webpage in R Mark 2009-12-04T04:18:46Z 2009-12-04T16:14:19Z <p>I'd like to read the contents of a URL (e.q., <a href="http://www.haaretz.com/" rel="nofollow">http://www.haaretz.com/</a>) in R. I am wondering how I can do it</p> http://stackoverflow.com/questions/1847710/screen-scraping-https-using-c 0 Screen scraping HTTPS using C# Jignesh 2009-12-04T15:30:03Z 2009-12-04T15:58:43Z <p>How to screen scrape HTTPS using C#?</p> http://stackoverflow.com/questions/822380/how-legal-is-screen-scraping 7 How legal is screen scraping? wsb3383 2009-05-04T22:22:38Z 2009-12-04T01:36:49Z <p>I'm trying to build an iPhone application that gathers content from real estate websites to display it in a mashed-up and structured manner (mapping, price averages...etc)</p> <p>I've stumbled upon many sites whose "Terms and Conditions" only allow downloading/re-using the data for personal purposes but not commercial ones. My intent is to have the iPhone application do all the work (when a user initiates a search query) of scraping the data and re-displaying it, of course with direct links to the original site page. In other words, I'm not crawling the website and storing it in my database and then re-aggregating its content to the user through some custom web service. </p> <p>My question is: since a user of my application is initiating the search request and re-displaying the results from screen scraped sites (through my app) for their personal use, would this still be OK? or is this still considered commercial re-use of data?</p> http://stackoverflow.com/questions/1790575/win32-how-to-scrape-html-without-regular-expressions 12 Win32.: How to scrape HTML without regular expressions? Ian Boyd 2009-11-24T14:52:30Z 2009-12-02T13:16:28Z <p>A recent <a href="http://www.codinghorror.com/blog/archives/001311.html" rel="nofollow">blog entry by a Jeff Atwood</a> says that you should never parse HTML using regular expressions - yet doesn't give an alternative.</p> <p>i want to scrape search search results, extracting values:</p> <pre><code>&lt;div class="used_result_container"&gt; ... ... &lt;div class="vehicleInfo"&gt; ... ... &lt;div class="makemodeltrim"&gt; ... &lt;a class="carlink" href="[Url]"&gt;[MakeAndModel]&lt;/a&gt; ... &lt;/div&gt; &lt;div class="kilometers"&gt;[Kilometers]&lt;/div&gt; &lt;div class="price"&gt;[Price]&lt;/div&gt; &lt;div class="location"&gt; &lt;span class='locationText'&gt;Location:&lt;/span&gt;[Location] &lt;/div&gt; ... ... &lt;/div&gt; ... ... &lt;/div&gt; ...and it repeats </code></pre> <p>You can see the values i want to extract, [enclosed in brackets]:</p> <ul> <li>Url</li> <li>MakeAndModel</li> <li>Kilometers</li> <li>Price</li> <li>Location</li> </ul> <p><em>Assuming</em> we <strong>accept</strong> the premise that parsing HTML:</p> <ul> <li>generally a bad idea</li> <li><a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">rapidly devolves into madness</a></li> </ul> <p>What's the way to do it?</p> <p>Assumptions:</p> <ul> <li>native Win32</li> <li>loose html</li> </ul> <p><hr></p> <p>Assumption clarifications:</p> <p><strong>Native Win32</strong></p> <ul> <li>.NET/CLR is not native Win32</li> <li>Java is not native Win32</li> <li>perl, python, ruby are not native Win32</li> <li>assume C++, in Visual Studio 2000, compiled into a native Win32 application</li> </ul> <p>Native Win32 applications <strong>can</strong> call library code:</p> <ul> <li>copied source code</li> <li>DLLs containing function entry points</li> <li>DLLs containing COM objects</li> <li>DLLs containing COM objects that are COM-callable wrappers (CCW) around managed .NET objects</li> </ul> <p><strong>Loose HTML</strong></p> <ul> <li>xml is not loose HTML</li> <li>xhtml is not loose HTML</li> <li>strict HTML is not loose HTML</li> </ul> <p>Loose HTML implies that the HTML is not well-formed xml (strict HTML is not well-formed xml anyway), and so an XML parser cannot be used. In reality i was present the assumption that any HTML parser must be generous in the HTML it accepts.</p> <p><hr></p> <h2>Clarification#2</h2> <p><strong><em>Assuming</em></strong> you like the idea of turning the HTML into a Document Object Model (DOM), how then do you access repeating structures of data? How would <em>you</em> walk a DOM tree? i need a DIV node that is a class of *used_result_container*, which has a child DIV of class of <em>vehicleInfo</em>. But the nodes don't necessarily have to be direct children of one another. </p> <p>It sounds like i'm trading one set of regular expression problems for another. If they change the structure of the HTML, i will have to re-write my code to match - as i would with regular expressions. And assuming we want to avoid those problems, because those are the problems with regular expressions, what do i do instead?</p> <p>And would i not be writing a regular expression parser for DOM nodes? i'm writing an engine to parse a string of objects, using an internal state machine and forward and back capture. No, there must be a better way - the way that Jeff alluded to.</p> <p>i intentionally kept the original question vague, so as not to lead people down the wrong path. i didn't want to imply that the solution, necessarily, had anything to do with:</p> <ul> <li>walking a DOM tree</li> <li>xpath queries</li> </ul> <h2>Clarification#3</h2> <p>The sample HTML i provided i trimmed down to the important elements and attributes. The mechanism i used to trim the HTML down was based on my internal bias that uses regular expressions. i naturally think that i need various "<strong>sign-posts</strong> in the HTML that i look for.</p> <p>So don't confuse the presented HTML for the entire HTML. Perhaps some other solution depends on the presence of <em>all</em> the original HTML.</p> <h2>Update 4</h2> <p>The only propsed solutions seem to involve using a library to convert the HTML into a Document Object Model (DOM). The question then would have to become: <strong>then what</strong>?</p> <p>Now that i have the DOM, what do i do with it? It seems that i still have to walk the tree with some sort of <em>regular DOM expression parser</em>, capable of forward matching and capture.</p> <p>In this particular case i need all the *used_result_container* <strong>DIV</strong> nodes which contain <em>vehicleInfo</em> DIV nodes as children. Any *used_result_container* DIV nodes that do not contain <em>vehicleInfo</em> has a child are not relavent.</p> <p>Is there a DOM regular expression parser with capture and forward matching? i don't think XPath can select higher level nodes based on criteria of lower level nodes:</p> <pre><code>\\div[@class="used_result_container" &amp;&amp; .\div[@class="vehicleInfo"]]\* </code></pre> <p><strong>Note:</strong> i use XPath so infrequently that i cannot make up hypothetical xpath syntax very goodly.</p> http://stackoverflow.com/questions/1815592/download-web-page-with-images-and-stylesheets-and-optionally-e-mailing-it 0 Download web page with images and stylesheets and (optionally) E-mailing it Pekka 2009-11-29T13:51:25Z 2009-12-01T01:09:19Z <p>I need to make snapshots of web pages programmatically using PHP and get them into a HTML E-Mail. </p> <p>I tried <code>wget --page-requisites</code>. It downloads everything all right, but it doesn't change the HTML page's source code to point to the downloaded files rather than the on-line originals. Also, that HTML is of course a long way from being displayed properly in a HTML E-Mail.</p> <p>I am interested to know whether there are ready-made solutions for this. I would already be happy with a solution that takes a HTML snapshot and changes the HTML accordingly. Being able to E-Mail it would be the icing on the cake.</p> <p>I control the web pages being snapshot, so I have the possibility to adjust the content to optimize the results.</p> <p>My server-side platform is PHP but with very liberal settings, I can execute things like wget and Perl scripts from within PHP. I do however not have root access and can not install additional packages or programs.</p> <p>The task is to make a snapshot of a product page each time somebody places an order, so there is documentation about what the page looked like at the time.</p> http://stackoverflow.com/questions/1822503/extracting-html-elements-in-a-given-region 0 Extracting html elements in a given region? Paul Wicks 2009-11-30T21:26:39Z 2009-11-30T21:44:54Z <p>Given a region defined by a rectangle and a url, is there any way to determine what elements lie within the given rectangle on the page at the given url? </p> <p>EDIT: Screen resolution, Font size, etc.. can all be set to reasonable defaults. </p> http://stackoverflow.com/questions/1815105/simple-screen-scraping-and-analyze-in-net 1 Simple screen scraping and analyze in .NET Riri 2009-11-29T09:39:00Z 2009-11-29T10:01:55Z <p>I'm building a small specialized search engine for prise info. The engine will only collect specific segments of data on each site. My plan is to split the process into two steps.</p> <ol> <li><p>Simple screen scraping based on a URL that points to the page where the segment I need exists. <em>Is the easiest way to do this just to use a WebClient object and get the full HTML?</em></p></li> <li><p>Once the HTML is pulled and saved analyse it via some script and pull out just the segment and values I need (for example the price value of a product). My problem is that this script somehow has to be unique for each site I pull, it has to be able to handle really ugly HTML (so I don't think XSLT will do ...) and I need to be able to change it on the fly as the target sites updates and changes. I will finally take the specific values and write these to a database to make them searchable</p></li> </ol> <p>Could you please give me some hints on how to architect the best way? Would you do different then described above?</p> http://stackoverflow.com/questions/1803991/has-anybody-ever-tried-to-screen-scrape-data-from-sites-built-with-sharepoint 1 Has anybody ever tried to screen scrape data from sites built with SharePoint? AndreaG 2009-11-26T14:29:46Z 2009-11-28T22:57:27Z <p>Or at least could anybody point me to docs about its crazy proprietary url parameters and html field name obfuscation? I can only suppose this is caused by SharePoint...</p> <p>The main problem is, given a start page built with SharePoint, I can't recreate a form post with a programmative client because:</p> <ul> <li>field names vary, they are appended with a some sort of id, hash, whatever (I think session.wise? Not sure)</li> <li>tracing HTTP traffic on my side, I see the HTTP request is packed with strange parameters like <code>__REQUESTDIGEST</code>, <code>__VIEWSTATE</code>, and many others</li> </ul> <p>Is this an intentional protection device put up by SharePoint? Which is the underlying architecture and which objects are involved (script callbacks, ... )?</p> <p>(BTW, I'm not doing anything evil, just trying to extract <strong>public government data</strong> from a website).</p> <p>Thanks.</p> http://stackoverflow.com/questions/1719268/scraping-hidden-html-when-visible-false-using-hpricot-ruby-on-rails 0 Scraping hidden HTML (when visible = false) using Hpricot (Ruby on Rails) Erika 2009-11-12T01:23:59Z 2009-11-28T18:01:13Z <p>Hi, I've come across an issue which unfortunately I can't seem to surpass, I'm also just a newborn to Ruby on rails unfortunately hence the number of questions</p> <p>I am attempting to scrape a webpage such as the following:</p> <pre><code>http://www.yellowpages.com.mt/Malta/Grocers-Mini-Markets-Retail-In-Malta-Gozo.aspx </code></pre> <p>I would like to scrape The Addresses, Phones and URL of the next Page which in this case is</p> <pre><code>http://www.yellowpages.com.mt/Malta/Grocers-Mini-Markets-Retail-In-Malta-Gozo+Ismol.aspx </code></pre> <p>I've been trying just about anything i could think of but nothing seems to work due to them being set to invisible or so. </p> <p>The Address is within an <em>h3</em> tag but it does not appear to be scrap-able. I've been also looking into ScRUBYt from the following url <code>http://www.rubyrailways.com/ajax-scraping-with-scrubyt-linkedin-google-analytics-yahoo-suggestions/</code>, but i really cant seem to find heads or tails of how to apply them in this case. </p> <p>I would really appreciate any pointers as this is an obstacle which i really need to surpass in order to move forward on my assignment. Thanks in advance for any help. </p> http://stackoverflow.com/questions/1804793/non-trivial-screen-scraping-selections-using-pquery 0 Non-trivial screen scraping selections using pQuery knorv 2009-11-26T17:02:19Z 2009-11-27T21:43:51Z <p>I'm using <a href="http://search.cpan.org/~ingy/pQuery/" rel="nofollow">pQuery</a> (a Perl port of jQuery) to select elements and retrieve text from a HTML-document.</p> <p>Consider the following markup:</p> <pre><code>&lt;x&gt; &lt;y&gt;code1&lt;/y&gt; &lt;z&gt;stuff&lt;/z&gt; &lt;y&gt;code2&lt;/y&gt; &lt;z&gt;foobar&lt;/z&gt; &lt;/x&gt; </code></pre> <p>And the following pQuery code:</p> <pre><code>my $target_value = pQuery($markup)-&gt;find($pquery_selector)-&gt;text; </code></pre> <p>I'm trying to formulate <code>$pquery_selector</code> so that it matches <code>&lt;z&gt;foobar&lt;/z&gt;</code> in the markup above using the following rule: find the <code>z</code>-element that follows after a <code>y</code>-element which has a body containing <code>"code2"</code>. While this is possible using jQuery I'm not sure that the pQuery syntax is powerful enough to handle such an expression.</p> <p>Is this type of selection possible using the pQuery syntax?</p> http://stackoverflow.com/questions/1800532/scrape-web-page-contents 1 Scrape web page contents IanVaughan 2009-11-25T22:58:31Z 2009-11-25T23:26:03Z <p>I've just started looking into this, I want to scrape my Netgear Router (<a href="http://192.168.0.1/setup.cgi?next_file=stattbl.htm" rel="nofollow">http://192.168.0.1/setup.cgi?next_file=stattbl.htm</a>) stats into a csv file.</p> <p>I run Win &amp; Linux, but mainly know C++, any links/solutions?</p>