https://github.com/davorg-cpan/amazon-sites
Perl extension containing various useful pieces of information about Amazon web sites
https://github.com/davorg-cpan/amazon-sites
cpan hacktoberfest perl
Last synced: 5 months ago
JSON representation
Perl extension containing various useful pieces of information about Amazon web sites
- Host: GitHub
- URL: https://github.com/davorg-cpan/amazon-sites
- Owner: davorg-cpan
- Created: 2024-03-10T16:35:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T12:04:43.000Z (over 1 year ago)
- Last Synced: 2025-06-01T06:17:56.333Z (about 1 year ago)
- Topics: cpan, hacktoberfest, perl
- Language: Perl
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
Awesome Lists containing this project
README
# Amazon::Sites
A Perl class that contains information about the various international Amazon
sites.
## Badges
Hopefully, these are all green.
[](https://github.com/davorg-cpan/amazon-sites/actions/workflows/perltest.yml)
[](https://coveralls.io/github/davorg-cpan/amazon-sites?branch=main)
[](https://cpants.cpanauthors.org/release/DAVECROSS/Amazon-Sites)
## Example
use Amazon::Sites;
my $az = Amazon::Sites->new;
my $az_uk = $az->site('UK');
say $az_uk->currency; # GBP
say $az_uk->tldn; # co.uk
say $az_uk->domain; # amazon.co.uk
For more documentation visit:
* https://metacpan.org/pod/Amazon::Sites
Or run `perldoc Amazon::Sites` once you have installed the module.
## Installation
The traditional way to install a Perl module is to download the latest zipped
tarball from CPAN (https://metacpan.org/dist/Amazon-Sites) and then run
through the following steps:
1. `unzip Amazon-Sites-X.X.X.tar.gz`
1. `tar xvf Amazon-Sites-X.X.X.tar`
1. `cd Amazon-Sites-X.X.X`
1. `perl Makefile.PL`
1. `make test`
1. `make install`
But there are programs that make this easier. For example, `cpan` comes as
part of the standard Perl installation:
* `cpan Amazon::Sites`
And many people use `cpanm` instead:
* `cpanm Amazon::Sites`
## Code
The code is maintained on GitHub.
* https://github.com/davorg-cpan/amazon-sites
## Questions, bugs and feature requests
All issues are tracked on GitHub:
* https://github.com/davorg-cpan/amazon-sites/issues
## Author
* Dave Cross