in reply to Getting more out of LWP::Simple
(No quotation available as I cannot copy/paste at the moment. Sorry)
While most people don't need POST, I do. IMHO, LWP::Simple needs a post function.
The namespace polution is awful, but with a few lines you can explicitly import some names the way you want them:
When LWP::Simple's functions are used only once or twice, just let it export nothing and use the full names including the package.use LWP::Simple (); BEGIN { *lwp_get = \&LWP::Simple::get; *lwp_head = \&LWP::Simple::head; }
- Yes, I reinvent wheels.
- Spam: Visit eurotraQ.
|
---|