The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
use YAML;
use Algorithm::HITS::Lite;

my $adjm = {
    alice => { bob => 1 },
};

my $ah = Algorithm::HITS::Lite->new(network => $adjm);

my ($hub,$auth) = $ah->iterate;

print YAML::Dump($hub, $auth);