Bundle-WATERKIP
view release on metacpan or search on metacpan
8081828384858687888990919293949596979899100"File::ShareDir"
:
"0"
,
"File::Spec"
:
"0"
,
"File::Spec::Functions"
:
"0"
,
"File::Temp"
:
"0"
,
"Finance::Crypto::Exchange::Kraken"
:
"0.002"
,
"Finance::Loan::Repayment"
:
"1.5"
,
"Finance::Salary::Rate"
:
"0.001"
,
"Finance::Tax::Aruba"
:
"0.009"
,
"FindBin"
:
"0"
,
"Getopt::Long"
:
"0"
,
"HTTP::Cookies"
:
"0"
,
"HTTP::Daemon::SSL"
:
"0"
,
"HTTP::Request"
:
"0"
,
"HTTP::Request::Params"
:
"0"
,
"IO::All"
:
"0"
,
"IO::Socket::SSL"
:
"0"
,
"Image::ExifTool"
:
"0"
,
"JSON::XS"
:
"0"
,
"LWP::UserAgent"
:
"0"
,
"List::Util"
:
"0"
,
"Moo"
:
"0"
,
646566676869707172737475767778798081828384File::ShareDir:
'0'
File::Spec:
'0'
File::Spec::Functions:
'0'
File::Temp:
'0'
Finance::Crypto::Exchange::Kraken:
'0.002'
Finance::Loan::Repayment:
'1.5'
Finance::Salary::Rate:
'0.001'
Finance::Tax::Aruba:
'0.009'
FindBin:
'0'
Getopt::Long:
'0'
HTTP::Cookies:
'0'
HTTP::Daemon::SSL:
'0'
HTTP::Request:
'0'
HTTP::Request::Params:
'0'
IO::All:
'0'
IO::Socket::SSL:
'0'
Image::ExifTool:
'0'
JSON::XS:
'0'
LWP::UserAgent:
'0'
List::Util:
'0'
Moo:
'0'
Makefile.PL view on Meta::CPAN
555657585960616263646566676869707172737475"File::ShareDir"
=> 0,
"File::Spec"
=> 0,
"File::Spec::Functions"
=> 0,
"File::Temp"
=> 0,
"Finance::Crypto::Exchange::Kraken"
=>
"0.002"
,
"Finance::Loan::Repayment"
=>
"1.5"
,
"Finance::Salary::Rate"
=>
"0.001"
,
"Finance::Tax::Aruba"
=>
"0.009"
,
"FindBin"
=> 0,
"Getopt::Long"
=> 0,
"HTTP::Cookies"
=> 0,
"HTTP::Daemon::SSL"
=> 0,
"HTTP::Request"
=> 0,
"HTTP::Request::Params"
=> 0,
"IO::All"
=> 0,
"IO::Socket::SSL"
=> 0,
"Image::ExifTool"
=> 0,
"JSON::XS"
=> 0,
"LWP::UserAgent"
=> 0,
"List::Util"
=> 0,
"Moo"
=> 0,
Makefile.PL view on Meta::CPAN
137138139140141142143144145146147148149150151152153154155156157"File::ShareDir"
=> 0,
"File::Spec"
=> 0,
"File::Spec::Functions"
=> 0,
"File::Temp"
=> 0,
"Finance::Crypto::Exchange::Kraken"
=>
"0.002"
,
"Finance::Loan::Repayment"
=>
"1.5"
,
"Finance::Salary::Rate"
=>
"0.001"
,
"Finance::Tax::Aruba"
=>
"0.009"
,
"FindBin"
=> 0,
"Getopt::Long"
=> 0,
"HTTP::Cookies"
=> 0,
"HTTP::Daemon::SSL"
=> 0,
"HTTP::Request"
=> 0,
"HTTP::Request::Params"
=> 0,
"IO::All"
=> 0,
"IO::Handle"
=> 0,
"IO::Socket::SSL"
=> 0,
"IPC::Open3"
=> 0,
"Image::ExifTool"
=> 0,
"JSON::XS"
=> 0,
"LWP::UserAgent"
=> 0,
bin/opnpost view on Meta::CPAN
123456789101112131415161718192021#!/usr/bin/perl
use
warnings;
use
strict;
# PODNAME: opnpost
# ABSTRACT: A OPN User agent that post stuf
use
FindBin;
use
Getopt::Long;
use
LWP::UserAgent;
use
HTTP::Cookies;
use
HTTP::Request;
use
IO::All;
use
Data::Dumper;
use
Pod::Usage;
use
XML::LibXML;
my
$script_name
=
$FindBin::Script
;
my
%options
= (
timeout
=> 60,
X
=>
'POST'
,
bin/opnpost view on Meta::CPAN
717273747576777879808182838485868788899091my
$content
=
scalar
io->catfile(
$options
{content})->slurp;
if
(
$options
{
'wrap-soap'
}) {
$content
= _soap_envelope(
$content
);
}
my
$ua
= LWP::UserAgent->new(
agent
=>
$options
{agent} //
"How-about-no/-1"
,
cookie_jar
=> HTTP::Cookies->new(),
protocols_allowed
=> [
qw(https http)
],
timeout
=>
$options
{timeout},
requests_redirectable
=>
$options
{redir} // [
qw(GET HEAD)
],
ssl_opts
=> {
$options
{k} ? (
verify_hostname
=> 0,
SSL_verify_mode
=> 0) : (),
$options
{ca} ? (
SSL_ca_file
=>
$options
{ca})
: (
SSL_ca_path
=>
$options
{
'ca-path'
}),
$options
{cc}
? (
SSL_cert_file
=>
$options
{cc},
282930313233343536373839404142434445464748requires
"File::ShareDir"
=>
"0"
;
requires
"File::Spec"
=>
"0"
;
requires
"File::Spec::Functions"
=>
"0"
;
requires
"File::Temp"
=>
"0"
;
requires
"Finance::Crypto::Exchange::Kraken"
=>
"0.002"
;
requires
"Finance::Loan::Repayment"
=>
"1.5"
;
requires
"Finance::Salary::Rate"
=>
"0.001"
;
requires
"Finance::Tax::Aruba"
=>
"0.009"
;
requires
"FindBin"
=>
"0"
;
requires
"Getopt::Long"
=>
"0"
;
requires
"HTTP::Cookies"
=>
"0"
;
requires
"HTTP::Daemon::SSL"
=>
"0"
;
requires
"HTTP::Request"
=>
"0"
;
requires
"HTTP::Request::Params"
=>
"0"
;
requires
"IO::All"
=>
"0"
;
requires
"IO::Socket::SSL"
=>
"0"
;
requires
"Image::ExifTool"
=>
"0"
;
requires
"JSON::XS"
=>
"0"
;
requires
"LWP::UserAgent"
=>
"0"
;
requires
"List::Util"
=>
"0"
;
requires
"Moo"
=>
"0"
;
( run in 0.847 second using v1.01-cache-2.11-cpan-f79bc02f770 )