
Net::Flickr::Simile - base class for Net::Flickr::Simile packages

There is no synopsis. There is only Net::Flickr::Simile::*.pm
use Getopt::Std;
use Config::Simple;
use Net::Flickr::Simile::Exhibit;
my %opts = ();
getopts('c:j:h:t:', \%opts);
my $cfg = Config::Simple->new($opts{'c'});
my %args = ('exhibit_json' => $opts{'j'},
'exhibit_html' => $opts{'h'},
'tags' => $opts{'t'});
my $fl = Net::Flickr::Simile::Exhibit->new($cfg);
$fl->search(\%args);
# So then you might do :
# perl ./myscript -c /my/flickr.cfg -h ./mystuff.html -j ./mystuff.js -t kittens

Base class for Net::Flickr::Simile packages

0.1

Aaron Straup Cope <ascope@cpan.org>

http://aaronland.info/perl/net/flickr/simile/exhibit.html
http://aaronland.info/perl/net/flickr/simile/exhibit.js


Please report all bugs via http://rt.cpan.org/

Copyright (c) 2007 Aaron Straup Cope. All Rights Reserved.
This is free software. You may redistribute it and/or modify it under the same terms as Perl itself.