File: top20_favorites.pl

package info (click to toggle)
libmetacpan-client-perl 2.033000-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: perl: 2,564; makefile: 6
file content (25 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

# examples/top20_favorites

use strict;
use warnings;
use MetaCPAN::Client;

my $top20_fav =
    MetaCPAN::Client->new()->all(
        'favorites',
        {
            aggregations => {
                aggs => {
                    terms => {
                        field => "distribution",
                        size => 20,
                    }
                }
            }
        }
    );

for my $bucket ( @{ $top20_fav->aggregations->{aggs}{buckets} } ) {
    printf "%s : %s\n", $bucket->{doc_count}, $bucket->{key}
}