NAME

WWW::DirectUpload - Perl module for uploading files to directupload.com

SYNOPSIS

      use WWW::DirectUpload;
      my $du = WWW::DirectUpload->new();
      $du->files(@files);
      $du->upload();

DESCRIPTION

This module allows you to upload files to directupload.com using Perl. Its upload() method will return you the path to the original image and its thumbnail.

WWW::DirectUpload uses LWP::UserAgent as its base class. So you can use all methods from LWP::UserAgent on WWW::DirectUpload. This allows you to handle your proxies directly via LWP.

Methods

AUTHOR

Sebastian Stumpf <sepp@perlhacker.org>

COPYRIGHT

Copyright 2007 Sebastian Stumpf. All rights reserved.

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

SEE ALSO

LWP::UserAgent(3), HTTP::Request::Common(3).