NAME

Atomik - An Atom/AtomPub Framework

SYNOPSIS

use Atomik::Feed;
my $feed = Atomik::Feed->new();

use Atomik::Client;

my $client = Atomik::Client->new(
  username => ...,
  password => ...
);

my $service = $client->service_get( uri => $service_uri );
my $feed    = $client->feed_get( uri => $feed_uri );
my $entry   = $client->entry_get( uri => $entry_uri );
$client->entry_create(
  uri => $entry_uri,
  entry => $entry
);

DESCRIPTION

Atomik is yet another Atom / AtomPub framework. Please note that this module's APIs and internals are still in flux. I welcome suggestions and patches

AUTHOR

Daisuke Maki <daisuke@endeworks.jp>

LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html