NAME

Ixchel::Actions::python_module_via_pkg - Install cpanm via packages.

VERSION

Version 0.2.0

CLI SYNOPSIS

ixchel -a python_module_via_pkg --module <module>

CODE SYNOPSIS

use Data::Dumper;

my $results=$ixchel->action(action=>'python_module_via_pkg', opts=>{module=>'Dumper'});

if ($results->{ok}) {
    print $results->{status_text};
}else{
    die('Action errored... '.joined("\n", @{$results->{errors}}));
}

FLAGS

--module <module>

The module to install.

This is required.

RESULT HASH REF

.errors :: A array of errors encountered.
.status_text :: A string description of what was done and the results.
.ok :: Set to zero if any of the above errored.