File: search.pl

package info (click to toggle)
libnet-github-perl 1.05-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 376 kB
  • sloc: perl: 2,073; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (5)
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
#!/usr/bin/env perl

use strict;
use warnings;
use FindBin qw/$Bin/;
use lib "$Bin/../lib";
use Net::GitHub::V3;
use Data::Dumper;

my $gh = Net::GitHub::V3->new();
my $search = $gh->search;

my %data = $search->repositories({
    q => 'perl',
    per_page => 100,
});
map { print $_->{url} . "\n" } @{$data{items}};

while ($search->has_next_page) {
    sleep 12; # 5 queries max per minute
    %data = $search->next_page;
    map { print $_->{url} . "\n" } @{$data{items}};
}

1;