The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Simpy - Perl interface to Simpy social bookmarking service

SYNOPSIS

  use Simpy;

  my $user = "jack";
  my $pass = "upth3h1ll";

  my $book = Simpy->new($user, $pass);
  my $tags = $book->GetTags();

  print $tags->xml;

DESCRIPTION

This module provides a Perl interface to the Simpy social bookmarking service. See http://www.simpy.com/simpy/service/api/rest/

THIS IS AN ALPHA RELEASE. This module should not be relied on for any purpose, beyond serving as an indication that a reliable version will be forthcoming at some point the future.

This module is being developed as part of the "tagged wiki" component of the Transpartisan Meshworks project ( http://www.transpartisanmeshworks.org ). The "tagged wiki" will integrate social bookmarking and collaborative content development in a single application.

EXPORT

None by default.

METHODS

new

Object construction method.

  my $book = Simpy->new;

  my $book = Simpy->new($user);

API Methods

Simpy API methods follow the naming conventions established as part of the Simpy REST API.

GetTags

Return a list of tags.

Currently, all this does is spit out the XML...

Accessor Methods

user

Set and get Simpy username.

   my $user = $book->user;

   $book->user($user);

CAVEATS

This is an early alpha release. Not all methods of the API are implemented, nor have the sub-modules defining data types for those API methods been developed.

SEE ALSO

http://simpyapi.sourceforge.net

http://www.transpartisanmeshworks.org

AUTHOR

Beads Land, <lt>beads@beadsland.com<gt>

COPYRIGHT AND LICENSE

Copyright (C) 2006 by Beads Land

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.