|
3 | 3 | # This program is release under the BSD License. You can find the full text of
|
4 | 4 | # the license in the LICENSE file.
|
5 | 5 |
|
6 |
| -""" |
7 |
| -Amazon Product Advertising API |
8 |
| -============================== |
9 |
| -
|
10 |
| - The Product Advertising API provides programmatic access to Amazon's |
11 |
| - product selection and discovery functionality so that developers like you |
12 |
| - can advertise Amazon products to monetize your website. |
13 |
| -
|
14 |
| - The Product Advertising API helps you advertise Amazon products using |
15 |
| - product search and look up capability, product information and features |
16 |
| - such as Customer Reviews, Similar Products, Wish Lists and New and Used |
17 |
| - listings. You can make money using the Product Advertising API to advertise |
18 |
| - Amazon products in conjunction with the Amazon Associates program. Be sure |
19 |
| - to join the Amazon Associates program to earn up to 15% in referral fees |
20 |
| - when the users you refer to Amazon sites buy qualifying products. |
21 |
| -
|
22 |
| -More info can be found at |
23 |
| -https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html |
24 |
| -
|
25 |
| -Requirements |
26 |
| ------------- |
27 |
| -
|
28 |
| -You need an Amazon Webservice account which comes with an access key and a |
29 |
| -secret key. |
30 |
| -
|
31 |
| -If you don't customise the response processing, you'll also need the python |
32 |
| -module lxml (>=2.1.5) and, if you're using python 2.4, also pycrypto. |
33 |
| -
|
34 |
| -License |
35 |
| -------- |
36 |
| -
|
37 |
| -This program is release under the BSD License. You can find the full text of |
38 |
| -the license in the LICENSE file. |
39 |
| -
|
40 |
| -""" |
41 | 6 |
|
42 | 7 | __docformat__ = "restructuredtext en"
|
43 | 8 |
|
|
60 | 25 | except ImportError: # pragma: no cover
|
61 | 26 | from urllib import quote
|
62 | 27 |
|
63 |
| -from version import VERSION |
| 28 | +from amazonproduct.version import VERSION |
64 | 29 |
|
65 | 30 | USER_AGENT = ('python-amazon-product-api/%s '
|
66 | 31 | '+http://pypi.python.org/pypi/python-amazon-product-api/' % VERSION)
|
|
0 commit comments