Hack 37 Downloading Comics with dailystrips

Hack 37 Downloading Comics with dailystrips

figs/beginner.gif figs/hack37.gif

Love comics but hate visiting multiple sites for your daily dose? Automate your stripping with some easy-to-use open source Perl software .

It's hard to believe that, across all the cultures of the Internet, there's one common denominator of humor. Can you guess what it is? No, no; it's not the "All Your Base Are Belong to Us" videos . It's the comic strip. Whether you're into geek humor, political humor, or unfortunate youngsters forever failing to kick a football, there's a comic strip for you.

In fact, there may be several comic strips for you. There may be so many that it's a pain to visit all the sites containing said comic strips to view them. But there's a great piece of software available to ease your woes: dailystrips grabs all the strips for you, presenting them in one HTML file. Combine it with cron [Hack #90] and you've got a great daily comic strip supplement right in your mailbox or web site. The author, Andrew Medico, makes it clear that if you set this up to run on a web site, you must ensure that you've configured your site to restrict access to you alone or risk some legal consequences.

Getting the Code

dailystrips is available at http://dailystrips. sourceforge .net/, and this hack covers Version 1.0.27. There are two components to the program: the program itself and the definitions file, which defines the details of the available comic strips. As of this writing, dailystrips supports over 500 different comic strips. Once you've downloaded the program, go back to the download page and grab the latest definitions file, which is updated often. Save it over the strips.def file that comes packaged in the ZIP archive with the application.

Running the Hack

After installation (see the INSTALL file or installation instructions online at http://dailystrips.sourceforge.net/1.0.27/install.html), dailystrips runs from the command line with several options. Here are a few of the more important ones:


--list

Lists available strips


--random

Downloads a random strip


--defs filename

Uses a user -specified strips definition file


--local

Saves strips to a local HTML file rather than the default of STDOUT


--help

Prints a list of available options

To grab the latest "Get Fuzzy" comic and save to a local file, run:

 %  perl dailystrips --local getfuzzy  

While the program is running, you'll get a count of any errors in retrieving the images of the strips. From my experiments, it looked like the nonsyndicated comics were easier to get and more consistent than the syndicated ones.

Once the program is finished, it'll either spit some HTML to STDOUT or, if you've enacted the --local option, save the strips to an HTML file named using the current date. The file will save into the dailystrips directory.

Hacking the Hack

In this hack, we're not hacking the hack so much as hacking the defs file. The defs file defines from where the strips are retrieved and the code snippets that are used to retrieve them. The defs file also includes groups , which are shortcuts to retrieving several comics at once. More extensive information on how to define strips is available from the README.DEFS file.

Defining strips by URL

The first way to define new strips is by generating a URL based on the current date. Here's an example for James Sharman's "Badtech" comic:

 strip badtech     name Badtech     artist James Sharman     homepage http://www.badtech.com/     type generate     imageurl http://www.badtech.com/a/%-y/%-m/%-d.jpg     provides any end 

The first line specifies a unique strip name that you'll use to add the strip to a group or get it from the command line. The second line, name , specifies the name of the strip to display in the HTML output. Next, artist includes the name of the illustrator, which will also display in the HTML output. The fourth line determines the home page of the strip, and the fifth line specifies how the strip is found. In this case, we're generating a URL. imageurl specifies the URL of the comic, and %-y , %-m , and %-d specify the year, month, and day, respectively.

The final line, provides , indicates which types of strips the definition can provide: either any for a definition that can provide the strip for any given date, or latest for a definition that can provide only the current strip.

Finding strips with a search

The other type of URL generation, searching , is as follows :

 strip joyoftech     name The Joy of Tech     homepage http://www.joyoftech.com/joyoftech/     type search     searchpattern <IMG.+?src="(joyimages/\d+\.gif)\"     matchpart 1     baseurl http://www.joyoftech.com/joyoftech/     provides latest end 

Notice that the options are similar to the options in the previous example. The strip , name , and homepage options function as they do in the first example, but the type option is now search . With this type, you need to include a searchpattern , which specifies a Perl regular expression that will match the strip's URL. The matchpart line tells the script which paranthetical section to match. In this example, there's only one parenthetical section.

baseurl is necessary only when the searchpattern line does not match a full URL (as in this instance). When specified, it's prepended to whatever the regular expression of searchpattern matches.

Gathering strips into a group

If you want to get a set of the same comic strips every day, it's kind of a pain to type them all in. dailystrips lets you specify a group name that gathers several comic strips at the same time. Groups go at the top of the definitions file and look like this:

 group andrews     desc Andrew's Favorite Strips     include userfriendly dilbert foxtrot     include pennyarcade joyoftech thefifthwave monty bc     include wizardofid garfield adamathome end 

group is the name of the group, and desc is its descriptive blurb. On each line after that, use the word include and whatever strips you want gathered into the group. As you can see, there are 11 strips in this group. When you're finished, put end on its own line. You call groups of strips with a @ , as in this example:

 %  perl dailystrips -l @andrews  


Spidering Hacks
Spidering Hacks
ISBN: 0596005776
EAN: 2147483647
Year: 2005
Pages: 157

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net