root/lang/perl/URI-Amazon-APA/trunk/lib/URI/Amazon/APA.pm @ 33214

Revision 33214, 1.7 kB (checked in by dankogai, 4 years ago)

URI::Amazon::APA - URI to access Amazon Product Advertising API

Line 
1package URI::Amazon::APA;
2
3use warnings;
4use strict;
5
6=head1 NAME
7
8URI::Amazon::APA - The great new URI::Amazon::APA!
9
10=head1 VERSION
11
12Version 0.01
13
14=cut
15
16our $VERSION = '0.01';
17
18
19=head1 SYNOPSIS
20
21Quick summary of what the module does.
22
23Perhaps a little code snippet.
24
25    use URI::Amazon::APA;
26
27    my $foo = URI::Amazon::APA->new();
28    ...
29
30=head1 EXPORT
31
32A list of functions that can be exported.  You can delete this section
33if you don't export anything, such as for a purely object-oriented module.
34
35=head1 FUNCTIONS
36
37=head2 function1
38
39=cut
40
41sub function1 {
42}
43
44=head2 function2
45
46=cut
47
48sub function2 {
49}
50
51=head1 AUTHOR
52
53Dan Kogai, C<< <dankogai at dan.co.jp> >>
54
55=head1 BUGS
56
57Please report any bugs or feature requests to C<bug-uri-amazon-apa at rt.cpan.org>, or through
58the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=URI-Amazon-APA>.  I will be notified, and then you'll
59automatically be notified of progress on your bug as I make changes.
60
61
62
63
64=head1 SUPPORT
65
66You can find documentation for this module with the perldoc command.
67
68    perldoc URI::Amazon::APA
69
70
71You can also look for information at:
72
73=over 4
74
75=item * RT: CPAN's request tracker
76
77L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=URI-Amazon-APA>
78
79=item * AnnoCPAN: Annotated CPAN documentation
80
81L<http://annocpan.org/dist/URI-Amazon-APA>
82
83=item * CPAN Ratings
84
85L<http://cpanratings.perl.org/d/URI-Amazon-APA>
86
87=item * Search CPAN
88
89L<http://search.cpan.org/dist/URI-Amazon-APA/>
90
91=back
92
93
94=head1 ACKNOWLEDGEMENTS
95
96
97=head1 COPYRIGHT & LICENSE
98
99Copyright 2009 Dan Kogai, all rights reserved.
100
101This program is free software; you can redistribute it and/or modify it
102under the same terms as Perl itself.
103
104
105=cut
106
1071; # End of URI::Amazon::APA
Note: See TracBrowser for help on using the browser.