get book information by ISBN in some regions
Project description
# amaboko - Amazon Book Information API
just wrapping [Amazon Simple Product API](https://github.com/yoavaviram/python-amazon-simple-product-api)
### Dependencies
* Python 2.7.x
* Amazon Product Advertising account (for APIAccessKey, APISecretKey)
* AWS account (for AmazonAssociateTag)
```
$ pip install -r requirements.txt
```
### Description
Choose 2 regions for endpoints, primary and secondary. If specified book information was not found in primary region, instead of that, this module will automatically get the information from secondary region. Of course, you can't necessarily get the information you want.
### Preparation for test
set environment variable **APIAccessKey, APISecretKey, AssocTag**.
```
$ AMAZON_ACCESS_KEY = "APIAccessKey"
$ AMAZON_SECRET_KEY = "APISecretKey"
$ AMAZON_ASSOC_TAG = "AssocTag"
```
or create `test_settings.py`
```
$ vim test_settings.py
```
```
AMAZON_ACCESS_KEY = "APIAccessKey"
AMAZON_SECRET_KEY = "APISecretKey"
AMAZON_ASSOC_TAG = "AssocTag"
```
If you didn't do above both of the above settings, you should pass those variables when you instantiate AmazonBook class. In the case of you imported this module, you have got to pass variables to AmazonBook constructor.
### Usage
You can set primary and secondary regions from `["US", "FR", "CN", "UK", "IN", "CA", "DE", "JP", "IT", "ES"]` in instantiation. (default regions are "JP" and "US")
```
>>> from amabako import AmazonBook, is_isbn_validate
>>> a = AmazonBook(access_key, secret_key, assoc_tag)
>>> isbn = "9784048816592"
>>> print is_isbn_validate(isbn)
False
>>> isbn = "9781433551666"
>>> print is_isbn_validate(isbn)
True
>>> book = a.lookup(isbn, IdType="ISBN", SearchIndex="Books")
>>> print book.title
Holy Bible: English Standard Version, Value Compact Bible, Trutone Turquoise, Emblem Design
>>> print book.large_image_url
http://ecx.images-amazon.com/images/I/412mbT1AvIL.jpg
>>> print book.get_attribute('Publisher')
Crossway Books
>>> print book.price_and_currency
('1531', 'JPY')
```
just wrapping [Amazon Simple Product API](https://github.com/yoavaviram/python-amazon-simple-product-api)
### Dependencies
* Python 2.7.x
* Amazon Product Advertising account (for APIAccessKey, APISecretKey)
* AWS account (for AmazonAssociateTag)
```
$ pip install -r requirements.txt
```
### Description
Choose 2 regions for endpoints, primary and secondary. If specified book information was not found in primary region, instead of that, this module will automatically get the information from secondary region. Of course, you can't necessarily get the information you want.
### Preparation for test
set environment variable **APIAccessKey, APISecretKey, AssocTag**.
```
$ AMAZON_ACCESS_KEY = "APIAccessKey"
$ AMAZON_SECRET_KEY = "APISecretKey"
$ AMAZON_ASSOC_TAG = "AssocTag"
```
or create `test_settings.py`
```
$ vim test_settings.py
```
```
AMAZON_ACCESS_KEY = "APIAccessKey"
AMAZON_SECRET_KEY = "APISecretKey"
AMAZON_ASSOC_TAG = "AssocTag"
```
If you didn't do above both of the above settings, you should pass those variables when you instantiate AmazonBook class. In the case of you imported this module, you have got to pass variables to AmazonBook constructor.
### Usage
You can set primary and secondary regions from `["US", "FR", "CN", "UK", "IN", "CA", "DE", "JP", "IT", "ES"]` in instantiation. (default regions are "JP" and "US")
```
>>> from amabako import AmazonBook, is_isbn_validate
>>> a = AmazonBook(access_key, secret_key, assoc_tag)
>>> isbn = "9784048816592"
>>> print is_isbn_validate(isbn)
False
>>> isbn = "9781433551666"
>>> print is_isbn_validate(isbn)
True
>>> book = a.lookup(isbn, IdType="ISBN", SearchIndex="Books")
>>> print book.title
Holy Bible: English Standard Version, Value Compact Bible, Trutone Turquoise, Emblem Design
>>> print book.large_image_url
http://ecx.images-amazon.com/images/I/412mbT1AvIL.jpg
>>> print book.get_attribute('Publisher')
Crossway Books
>>> print book.price_and_currency
('1531', 'JPY')
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
amaboko-0.0.3.tar.gz
(2.8 kB
view details)
File details
Details for the file amaboko-0.0.3.tar.gz
.
File metadata
- Download URL: amaboko-0.0.3.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcf81142d97bc979074eee1559bfa46bca5d9f5d7c5f6a6bdb205f8763bcec6d |
|
MD5 | 57a767adfba7d23ea074974303075c8a |
|
BLAKE2b-256 | 058eeaf5bdc240053723224cbeb917aa32d4e6487e320fcd67627760d2daa524 |