Group
Extension

Matches 3

Fancazzista-Scrap ( A/AM/AMICELI/Fancazzista-Scrap-1.01.tar.gz, AMICELI, 2021; MetaCPAN )
Fancazzista-Scrap/lib/Fancazzista/Scrap/RedditScrapper.pm ( view source; MetaCPAN )
sta::Scrap::RedditScrapper;

use strict;
use warnings;
use LWP::UserAgent;
use HTTP::Request;
use JSON;
use Encode qw(encode);

our $VERSION = '1.00';

sub new {
    my $class = shift;

    my $self =
my $base     = "https://www.reddit.com/r/";
    my $url      = $base . $subreddit->{name} . "/new.json?limit=" . ( $subreddit->{limit} || 5 );
    my $r        = HTTP::Request->new( 'GET', $url );
   
    my @subreddits = ();

    if ( $response->is_success ) {
        my $responseContent = decode_json $response->decoded_content;
        my @children        = @{ $responseContent->{data}->{children}
Fancazzista-Scrap ( A/AM/AMICELI/Fancazzista-Scrap-1.01.tar.gz, AMICELI, 2021; MetaCPAN )
Fancazzista-Scrap/lib/Fancazzista/Scrap/DevtoScrapper.pm ( view source; MetaCPAN )
ista::Scrap::DevtoScrapper;

use strict;
use warnings;
use LWP::UserAgent;
use HTTP::Request;
use JSON;
use Encode qw(encode);

our $VERSION = '1.00';

sub new {
    my $class = shift;

    my $self =
r);

    my @posts = ();

    if ( $response->is_success ) {
        my $responseContent = decode_json $response->decoded_content;
        my @children        = @{$responseContent};

        foreach (
Fancazzista-Scrap ( A/AM/AMICELI/Fancazzista-Scrap-1.01.tar.gz, AMICELI, 2021; MetaCPAN )
Fancazzista-Scrap/lib/Fancazzista/Scrap/WebsiteScrapper.pm ( view source; MetaCPAN )
iteScrapper;

use strict;
use warnings;
use LWP::UserAgent;
use HTTP::Request;
use Mojo::DOM;
use JSON;
use Encode qw(encode);

our $VERSION = '1.00';

sub new {
    my $class = shift;

    my $self =

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.