Filed Under ([+] Programing, [-] Perl) by Junkiest`Jr on 01-07-2008
Last night i try to make some simple application from WWW::Mechanize library using perl. and then i think, how to monitoring our paypal balance and see the history of our account transaction… so, i try to make it bassed on perl.
Requirment :
- ActivePerl [ I use ActivePerl 5.10 ]
- Library WWW::Mechanize [ make temporary browser ]
- Library HTTP::Cookies [ keep our login cookies ]
- Library Crypt::SSLeay and Net::SSleay [ open HTTPS ]
yup let’s start :
Source [ Just Copy Paste on text editor ] :
Read the rest of this entry »
Filed Under ([-] Perl) by Junkiest`Jr on 01-07-2008
There are many kind how to install library on perl, i like use ActivePerl 5.1. last night i try to install library on perl with MCPAN. i use windows XP as My Operating SYstem.
STEP 1
you must download and install nmake.exe. to compile make command. you can download here . make usually use n linux, and now i use windows. so with that tool i can compile command make which only can do in linux shell.
STEP 2
to install WWW::Mechanize, you need YAML on cpan.on command prompt, type this :
perl MCPAN -e shell ==> to enter shell command on CPAN.

and then type this :
install WWW::YAML
and then try to download and install the YAML automatically.
STEP 3
install WWW::Mechanize, just type
install WWW::Mechanize
then process installation begin. if appears confirmation to compile right now, just type y and enter. and then compile will be continued soon.
finish the installation WWW::Mechanze.
next we’ll try to use that library.