Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Retry too many requests (#23)
Browse files Browse the repository at this point in the history
* Add 429 in retry list

* Bump 0.3.3 -> 0.3.4
  • Loading branch information
cowboy-bebug authored Oct 22, 2020
1 parent 3ad6477 commit 7d9b189
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app_store_scraper/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "app-store-scraper"
__version__ = "0.3.3"
__version__ = "0.3.4"
__description__ = "Single API ☝ App Store Review Scraper 🧹"
__author__ = "Eric Lim"
__url__ = "https://github.com/cowboy-bebug/app-store-scraper"
Expand Down
2 changes: 1 addition & 1 deletion app_store_scraper/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _get(
params=None,
total=3,
backoff_factor=3,
status_forcelist=[404],
status_forcelist=[404, 429],
) -> requests.Response:
retries = Retry(
total=total,
Expand Down

0 comments on commit 7d9b189

Please sign in to comment.