NAME

Comics::Fetcher::GoComics -- Fetcher for GoComics.

SYNOPSIS

  package Comics::Plugin::Garfield;
  use parent qw(Comics::Fetcher::GoComics);

  sub register {
      shift->SUPER::register
	( { name    => "Garfield",
	    url     => "http://www.comics.com/garfield",
	  } );
  }
  # Return the package name.
  __PACKAGE__;

DESCRIPTION

The GoComics Fetcher handles comics that are on the GoComics websites (comics.com, gocomics.com).

Note: The current implementation uses the Single Fetcher which returns a slightly too small, sub-optimal image. This will be fixed in a future release.

The Fetcher requires the common arguments:

name

The full name of this comic, e.g. "Garfield".

url

The base url of this comic.

Fetcher specific arguments:

None as yet.