Group
Extension

Matches 1

WWW-Scraper-WolframAlpha ( A/AV/AVAR/WWW-Scraper-WolframAlpha-0.001.tar.gz, AVAR, 2011; MetaCPAN )
WWW-Scraper-WolframAlpha/lib/WWW/Scraper/WolframAlpha.pm ( view source; MetaCPAN )
;
    use Any::Moose 'X::Getopt';
    use Any::Moose 'X::StrictConstructor';
    use URI;
    use JSON::XS;
    use WWW::Mechanize;

    our $VERSION = '0.01';

    with any_moose('X::Getopt::Dashes')
 = $mech->content;

        # Get the raw JSON string
        my ($json_string) = $cont =~ m[
            \Qcontext.jsonArray.popups.pod_0200.push(\E\ (?<json>\{.*?\}) \Q);\E
        ]xm;

        # D
ecode it into a Perl structure
        my $json = decode_json($json_string);
        my $reply = $json->{stringified};

        return $reply;
    }

    sub run {
        my ($self, $query) = @_;

  

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