NAME

Unalog - Interact with the Unalog


SYNOPSIS

    use Unalog;
    my $ua = Unalog->new( username = 'me', password => 'hohoho' );
    $ua->add( 
        url     => 'http://www.google.com',
        title   => 'google',
        comment => 'my favorite search engine'
    );


DESCRIPTION

This is alpha software for routing links to unalog.mine.nu. The interface will very likely change.


METHODS

new()

Logs into unalog using the username and password that are passed in.

    my $unalog = Unalog->new( username => 'me', password => 'ins3cur3' );

add()

Add will add a site to your unalog account. You must pass in url and title parameters; comment is optional.

    $unalog->add( 
        url     => 'http://www.google.com',
        title   => 'google',
        comment => 'my favorite search engine'
    );


AUTHORS