App-Kramerius-V4

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

    - examples
    - inc
    - t
    - xt
requires:
  Class::Utils: 0
  Data::Kramerius: 0
  Error::Pure: 0
  Getopt::Std: 0
  IO::Barf: 0
  JSON::XS: 0
  LWP::UserAgent: 0
  perl: 5.6.0
resources:
  bugtracker: https://github.com/michal-josef-spacek/App-Kramerius-V4/issues
  homepage: https://github.com/michal-josef-spacek/App-Kramerius-V4
  license: http://opensource.org/licenses/bsd-license.php
  repository: git://github.com/michal-josef-spacek/App-Kramerius-V4
version: '0.02'

Makefile.PL  view on Meta::CPAN

license 'bsd';
name 'App-Kramerius-V4';
perl_version 5.006;
readme_from 'bin/kramerius4';
recursive_author_tests('xt');
requires 'Class::Utils' => 0;
requires 'Data::Kramerius' => 0;
requires 'Error::Pure' => 0;
requires 'Getopt::Std' => 0;
requires 'IO::Barf' => 0;
requires 'JSON::XS' => 0;
requires 'LWP::UserAgent' => 0;
resources 'bugtracker' => 'https://github.com/michal-josef-spacek/App-Kramerius-V4/issues',
resources 'homepage' => 'https://github.com/michal-josef-spacek/App-Kramerius-V4';
resources 'repository' => 'git://github.com/michal-josef-spacek/App-Kramerius-V4';
test_requires 'Test::More' => 0;
test_requires 'Test::NoWarnings' => 0;
tests_recursive;
version '0.02';

# Run.

V4.pm  view on Meta::CPAN

package App::Kramerius::V4;

use strict;
use warnings;

use Class::Utils qw(set_params);
use Data::Kramerius;
use Error::Pure qw(err);
use Getopt::Std;
use IO::Barf qw(barf);
use JSON::XS;
use LWP::UserAgent;

our $VERSION = 0.02;

# Constructor.
sub new {
	my ($class, @params) = @_;

	# Create object.
	my $self = bless {}, $class;

V4.pm  view on Meta::CPAN

 # Download http://kramerius.mzk.cz/search/api/v5.0/item/uuid:224d66f8-f48e-4a92-b41e-87c88a076dc0/full
 # Save 224d66f8-f48e-4a92-b41e-87c88a076dc0.jpg

=head1 DEPENDENCIES

L<Class::Utils>,
L<Data::Kramerius>,
L<Error::Pure>,
L<Getopt::Std>,
L<IO::Barf>,
L<JSON::XS>,
L<LWP::UserAgent>.

=head1 SEE ALSO

=over

=item L<App::Kramerius::URI>

Base class for kramerius-uri script.



( run in 0.487 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )