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

Net::Qiita - Perl wrapper for the Qiita API

SYNOPSIS

  use Net::Qiita;

  my $user_items = Net::Qiita->user_items('y_uuki_');

  my $tag_items = Net::Qiita->tag_items('perl');

  my $item_uuid = '1234567890abcdefg';
  my $markdown_content = Net::Qiita->item(item_uuid);

  my $client = Net::Qiita->new(
    url_name => 'y_uuki_',
    password => 'mysecret',
  );
  # or
  $client = Net::Qiita->new(
    token => 'myauthtoken',
  );

  $user_items = $client->user_items;

DESCRIPTION

Net::Qiita is a wrapper for Qiita API.

AUTHOR

Yuuki Tsubouchi <yuki.tsubo@gmail.com>

SEE ALSO

LICENSE

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