
WWW::RapidShare - Download files from Rapidshare

This documentation refers to WWW::RapidShare version 0.2

Currently only works with rapidshare.com PREMIUM accounts.
More features coming soon!

use WWW::RapidShare;
my $rapid = WWW::RapidShare->new();
$rapid->url('http://rapidshare.com/files/file.zip');
$rapid->account_id('xxxxxx');
$rapid->password('xxxxxx');
# Download the file associated with the above URL.
# A random mirror will be chosen.
# File will be saved in current directory.
$rapid->download_file();

Create a new WWW::RapidShare object
my $rapid = WWW::RapidShare->new();
None
A WWW::RapidShare object
* url - The URL to download the file
* account_id - Your account ID
* password - your password
Download the file associated with the URL
$rapid->download_file();
None
None
This method will create a file in the current directory


Rohan Almeida <rohan@almeida.in>

Copyright (c) 2008 Rohan Almeida <rohan@almeida.in>. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.