Skip to content

michal-josef-spacek/WWW-Search-Antikvariat11CZ

Repository files navigation

NAME
    WWW::Search::Antikvariat11CZ - Class for searching
    http://antikvariat11.cz .

SYNOPSIS
     use WWW::Search::Antikvariat11CZ;
     my $obj = WWW::Search->new('Antikvariat11CZ');
     $obj->native_query($query);
     my $maintainer = $obj->maintainer; 
     my $res_hr = $obj->next_result;
     my $version = $obj->version;

METHODS
    "native_setup_search($query)"
             Setup.

    "native_retrieve_some()"
             Get data.

EXAMPLE
     use strict;
     use warnings;

     use Data::Printer;
     use WWW::Search::Antikvariat11CZ;

     # Arguments.
     if (@ARGV < 1) {
             print STDERR "Usage: $0 match\n";
             exit 1;
     }
     my $match = $ARGV[0];

     # Object.
     my $obj = WWW::Search->new('Antikvariat11CZ');
     $obj->maximum_to_retrieve(1);

     # Search.
     $obj->native_query($match);
     while (my $result_hr = $obj->next_result) {
            p $result_hr;
     }

     # Output:
     # Usage: /tmp/1Ytv23doz5 match

     # Output with 'Čapek' argument:
     # \ {
     #     author          "Karel Čapek",
     #     category        "Pohádky / Dětské",
     #     detailed_link   "http://antikvariat11.cz/kniha/capek-karel-devatero-pohadek-a-jeste-jedna-jako-privazek-od-josefa-capka-1977-319041",
     #     illustrator     "Čapek, Josef",
     #     image           "http://antikvariat11.cz/files/thumb_36885.png",
     #     pages           "242 s.",
     #     price           "55 Kč",
     #     stay            "Výborná originální vazba",
     #     title           "Devatero pohádek a ještě jedna jako přívažek od Josefa Čapka",
     #     year_issued     1977
     # }

DEPENDENCIES
    HTTP::Cookies, LWP::UserAgent, Readonly, Web::Scraper, WWW::Search.

SEE ALSO
    WWW::Search
        Virtual base class for WWW searches

    Task::WWW::Search::Antiquarian::Czech
        Install the WWW::Search modules for Czech antiquarian bookstores.

REPOSITORY
    <https://github.com/tupinek/WWW-Search-Antikvariat11CZ>

AUTHOR
    Michal Špaček <mailto:skim@cpan.org>

    <http://skim.cz>

LICENSE AND COPYRIGHT
     © Michal Špaček 2014-2015
     BSD 2-Clause License

VERSION
    0.02