Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Help with Geo::IP output

by Anonymous Monk
on Jun 29, 2020 at 10:29 UTC ( [id://11118648]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @output = qx(geoip -s 209.197.123.153);
    print Dumper(\@output);
    print $output[5];
    #Country   : US  United States
    
  2. or download this
    use JSON::PP qw/decode_json/;
    use IPC::Run3::Shell::CLIWrapper;
    
    my $geoip = IPC::Run3::Shell::CLIWrapper->new( { fail_on_stderr=>1, st
    +dout_filter => sub {$_=decode_json($_)} }, qw/ geoip --json --DB=dbi:
    +SQLite:dbname=geoip / );
    my $data = $geoip->('115.66.224.70');
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11118648]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-04-19 09:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found