Remove deprecated Product Advertising API (PAAPI) module - #153
Merged
Conversation
Drop the legacy Product Advertising API 5.0 wrapper and its bundled SDK, leaving amazon_creatorsapi as the only public API. Release as 7.0.0. - Delete the amazon_paapi package and its test suite - Delete the PAAPI documentation and the version 6 migration guide - Drop the API_KEY/API_SECRET credentials, only used by the removed module - Narrow the packaging, lint, type-check and coverage config to the remaining packages Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017tt3keqqTMqgirkJezEVU8
Restore docs/pages/migration-guide-6.md and its entry in the docs index. It is the upgrade path for users of the removed amazon_paapi module, so reword it to describe that module as removed in 7.0.0 rather than merely deprecated. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017tt3keqqTMqgirkJezEVU8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR removes the entire
amazon_paapimodule, which provided a wrapper for Amazon's legacy Product Advertising API 5.0. The module has been deprecated in favor of theamazon_creatorsapimodule, which is the primary focus of this project going forward.Key Changes
Removed entire
amazon_paapipackage including:sdk/api_client.py,sdk/api/default_api.py)sdk/configuration.py,sdk/auth/)api.py)Updated configuration files:
.env.template(API_KEY, API_SECRET)amazon_creatorsapiamazon_creatorsapiUpdated documentation:
amazon_creatorsapiinstead ofamazon_paapiUpdated CHANGELOG.md to document this deprecation
Implementation Details
This is a clean removal of deprecated code with no functional changes to the active
amazon_creatorsapimodule. All PAAPI-related tests, models, and utilities have been completely removed to reduce maintenance burden and clarify the project's focus.https://claude.ai/code/session_017tt3keqqTMqgirkJezEVU8