You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
# Amazon Product Advertising API 5.0 wrapper for Python
2
2
3
-
A simple Python wrapper for the [last version of the Amazon Product Advertising API](https://webservices.amazon.com/paapi5/documentation/quick-start/using-sdk.html). This module allows interacting with Amazon using the official API in an easier way.
3
+
A simple Python wrapper for the [last version of the Amazon Product Advertising
Throttling value represents the wait time in seconds between API calls, being the default value 1 second. Use it to avoid reaching Amazon request limits.
95
+
Throttling value represents the wait time in seconds between API calls, being the
96
+
default value 1 second. Use it to avoid reaching Amazon request limits.
94
97
95
98
```python
96
99
amazon = AmazonApi(KEY, SECRET, TAG, COUNTRY, throttling=4) # Makes 1 request every 4 seconds
@@ -99,12 +102,20 @@ amazon = AmazonApi(KEY, SECRET, TAG, COUNTRY, throttling=0) # No wait time betw
99
102
100
103
## Contribution
101
104
102
-
Activate githooks with:
105
+
Creating pull requests for this repo is higly appreciated to add new features or solve
106
+
bugs. To help during development process, githooks can be activated to run some scripts
107
+
before pushing new commits. This will run checks for code format and tests, to ensure
108
+
everything follows this repo guidelines. Use next command to activate them:
103
109
104
110
```
105
111
git config core.hooksPath .githooks
106
112
```
107
113
114
+
The same checks will also run on the repo with GitHub Actions to ensure all tests pass
0 commit comments