I'd like to scrape the iTunes top X RSS feed and insert into a dB... - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T04:07:09Z http://stackoverflow.com/feeds/question/576780 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/576780/id-like-to-scrape-the-itunes-top-x-rss-feed-and-insert-into-a-db 0 I'd like to scrape the iTunes top X RSS feed and insert into a dB... 2009-02-23T07:19:33Z 2009-11-25T14:13:23Z <p>Preferably I'd like to do so with some bash shell scripting, maybe some PHP or PERL and a MySQL db. Thoughts?</p> http://stackoverflow.com/questions/576780/id-like-to-scrape-the-itunes-top-x-rss-feed-and-insert-into-a-db/576823#576823 0 Answer by Chad Birch for I'd like to scrape the iTunes top X RSS feed and insert into a dB... Chad Birch 2009-02-23T07:44:42Z 2009-02-23T07:44:42Z <p>Well, I'm not really sure what sort of answer you're looking for, but I don't think you need to do any sort of shell scripting. Bother PHP and Perl would be perfectly capable of downloading the RSS feed and insert the data into MySQL. Set the PHP or Perl script up to run every X number of hours/days/whatever with a cronjob and you'd be done.</p> <p>Not really much else to tell you, with how vague your question was.</p> http://stackoverflow.com/questions/576780/id-like-to-scrape-the-itunes-top-x-rss-feed-and-insert-into-a-db/576948#576948 0 Answer by Kit Sunde for I'd like to scrape the iTunes top X RSS feed and insert into a dB... Kit Sunde 2009-02-23T08:56:17Z 2009-11-25T14:13:23Z <p>I'm scraping Stack Overflow's feed to perform some additional filtering using PHP's <a href="http://us2.php.net/domdocument" rel="nofollow">DOMDocument</a> and then DOM methods to access what I want. I'd suggest looking into that.</p> http://stackoverflow.com/questions/576780/id-like-to-scrape-the-itunes-top-x-rss-feed-and-insert-into-a-db/577003#577003 1 Answer by mirod for I'd like to scrape the iTunes top X RSS feed and insert into a dB... mirod 2009-02-23T09:25:39Z 2009-02-23T09:25:39Z <p>Here is a solution using Perl, with the help of (of course!) a bunch of modules.</p> <p>It uses SQLite so you can run it easily (the definition of the (simplistic) DB is at the end of the script). Also it uses Perl hashes and simple SQL statements, instead of proper objects and an ORM layer. I found it easier to parse the XML directly instead of using an RSS module (I tried XML::Feed), because you need access to specific tags (name, preview...).</p> <p>You can use it as a basis to add more features, more fields in the DB, a table for genre... but at least this way you have a basis that you can expand on (and maybe you can then publish the result as open-source).</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use XML::Twig; # to parse the RSS use DBIx::Simple; # DB interaction made easy use Getopt::Std; # always need options for a script use PerlIO::gzip; # itunes sends a gzip-ed file use LWP::Simple 'getstore'; # to get the RSS my %opt; getopts( 'vc:', \%opt); # could also be an option, but I guess it won't change that much my @URLs= ( 'http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/ws/RSS/topsongs/limit=10/xml', ); # during debug, it's nice to use a cache of the feed instead of hitting hit every single run if( $opt{c}) { @URLs= ($opt{c}); } # I like using SQLite when developping, # replace with MySQL connect parameters if needed (see DBD::MySQL for the exact syntax) my @connect= ("dbi:SQLite:dbname=itunes.db","","", { RaiseError =&gt; 1, AutoCommit =&gt; 0 }) ; my $NS_PREFIX='im'; # a global, could be passed around, but would make the code a bit more verbose my $db = DBIx::Simple-&gt;connect(@connect) or die "cannot connect to DB: $DBI::errstr"; foreach my $url (@URLs) { add_feed( $url); } $db-&gt;disconnect; warn "done\n" if( $opt{v}); sub add_feed { my( $url)= @_; # itunes sends gziped RSS, so we need to unzip it my $tempfile= "$0.rss.gz"; # very crude, should use File::Temp instead getstore($url, $tempfile); open( my $in_feed, '&lt;:gzip', $tempfile) or die " cannot open tempfile: $!"; XML::Twig-&gt;new( twig_handlers =&gt; { 'feed/title' =&gt; sub { warn "adding feed ", $_-&gt;text if $opt{v}; }, entry =&gt; \&amp;entry, }, map_xmlns =&gt; { 'http://phobos.apple.com/rss' =&gt; $NS_PREFIX }, ) -&gt;parse( $in_feed); close $in_feed; } sub entry { my( $t, $entry)= @_; # get the data my %song= map { $_ =&gt; $entry-&gt;field( "$NS_PREFIX:$_") } qw( name artist price); if( my $preview= $entry-&gt;first_child( 'link[@title="Preview"]') ) { $song{preview}= $preview-&gt;att( 'href'); } # $db-&gt;begin_work; # store it if( ($db-&gt;query( 'SELECT count(*) FROM song WHERE name=?', $song{name})-&gt;flat)[0]) { warn " skipping $song{name}, already stored\n" if $opt{v}; } else { warn " adding $song{name}\n" if $opt{v}; if( my $artist_id= ($db-&gt;query( 'SELECT id from ARTIST where name=?', $song{artist})-&gt;flat)[0]) { warn " existing artist $song{name} ($artist_id)\n" if $opt{v}; $song{artist}= $artist_id; } else { warn " creating new artist $song{artist}\n" if $opt{v}; $db-&gt;query( 'INSERT INTO artist (name) VALUES (??)', $song{artist}); # should be $db-&gt;last_insert_id but that's not available in DBD::SQLite at the moment $song{artist}= $db-&gt;func('last_insert_rowid'); } $db-&gt;query( 'INSERT INTO song ( name, artist, price, preview) VALUES (??)', @song{qw( name artist price preview)}); $db-&gt;commit; } $t-&gt;purge; # keeps memory usage lower, probably not needed for small RSS files } __END__ =head1 NAME itunes2db - loads itunes RSS feeds to a DB =head1 OPTIONS -c &lt;file&gt; uses a cache instead of the list of URLs -v verbose =head1 DB schema create table song ( id INT PRIMARY KEY, name TEXT, artist INT, price TEXT, preview TEXT); create table artist (id INT PRIMARY KEY, name TEXT); </code></pre> http://stackoverflow.com/questions/576780/id-like-to-scrape-the-itunes-top-x-rss-feed-and-insert-into-a-db/628804#628804 0 Answer by Tom for I'd like to scrape the iTunes top X RSS feed and insert into a dB... Tom 2009-03-10T03:07:18Z 2009-03-10T03:07:18Z <p>From what I can tell, it's not actively maintained, but Scriptella could be of some assistance. Very simple xml script, running on Java. </p> <p><a href="http://snippets.dzone.com/posts/show/3534" rel="nofollow">Example of how to suck RSS into a database</a></p>