Bundle-WATERKIP

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
"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",

META.yml  view on Meta::CPAN

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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

55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"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

137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
"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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl
use strict;
 
# PODNAME: opnpost
# ABSTRACT: A OPN User agent that post stuf
 
use FindBin;
use IO::All;
 
my $script_name = $FindBin::Script;
my %options = (
    timeout      => 60,
    X            => 'POST',

bin/opnpost  view on Meta::CPAN

71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
my $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},

cpanfile  view on Meta::CPAN

28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
requires "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 )