├── .coveragerc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── dependabot-automerge.yml │ ├── manual.yml │ ├── python-publish.yml │ └── version_increment.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── credentials.yml ├── docs ├── .gitignore ├── .well-known │ ├── apple-developer-merchantid-domain-association │ └── apple-developer-merchantid-domain-association.json ├── Makefile ├── _static │ ├── apple-developer-merchantid-domain-association │ ├── apple-developer-merchantid-domain-association.json │ ├── button.css │ ├── cookie.js │ ├── cookieconsent.min.js │ ├── cookieconsent.min.map │ ├── favicon.ico │ ├── favicon.ico.f │ ├── fireworks.html │ ├── helpful-widget.js │ ├── images │ │ ├── 15df61f856834dd2a935d78ca80930d3.png │ │ ├── 33d0dab07d52479e9e4fcc21ff17e9d5.png │ │ ├── 3e168715082642cd9fee10f38dc6e004.png │ │ ├── 815da4f3df064233ae798d61d683dda1.png │ │ ├── 8627ad626d39430f8e105fe67a021167.png │ │ ├── App_Overview.png │ │ ├── Authorise_Application.png │ │ ├── Create_App.png │ │ ├── LWA_Credentials.png │ │ ├── bfb7a8859c53401db3ccd3a27a48e6ea.png │ │ ├── hellocoding.png │ │ └── tubemagic.png │ ├── logo.svg │ └── redoc │ │ ├── aplusContent_2020-11-01.html │ │ ├── authorization.html │ │ ├── catalogItemsV0.html │ │ ├── catalogItems_2020-12-01.html │ │ ├── definitionsProductTypes_2020-09-01.html │ │ ├── fbaInbound.html │ │ ├── fbaInventory.html │ │ ├── fbaSmallandLight.html │ │ ├── feeds_2020-09-04.html │ │ ├── feeds_2021-06-30.html │ │ ├── financesV0.html │ │ ├── fulfillmentInboundV0.html │ │ ├── fulfillmentOutbound_2020-07-01.html │ │ ├── listingsItems_2020-09-01.html │ │ ├── listingsItems_2021-08-01.html │ │ ├── listingsRestrictions_2021-08-01.html │ │ ├── merchantFulfillmentV0.html │ │ ├── messaging.html │ │ ├── notifications.html │ │ ├── ordersV0.html │ │ ├── productFeesV0.html │ │ ├── productPricingV0.html │ │ ├── reports_2020-09-04.html │ │ ├── reports_2021-06-30.html │ │ ├── sales.html │ │ ├── sellers.html │ │ ├── services.html │ │ ├── shipmentInvoicingV0.html │ │ ├── shipping.html │ │ ├── solicitations.html │ │ ├── tokens_2021-03-01.html │ │ ├── uploads_2020-11-01.html │ │ ├── vendorDirectFulfillmentInventoryV1.html │ │ ├── vendorDirectFulfillmentOrdersV1.html │ │ ├── vendorDirectFulfillmentPaymentsV1.html │ │ ├── vendorDirectFulfillmentShippingV1.html │ │ ├── vendorDirectFulfillmentTransactionsV1.html │ │ ├── vendorInvoices.html │ │ ├── vendorOrders.html │ │ ├── vendorShipments.html │ │ └── vendorTransactionStatus.html ├── _templates │ ├── footer.html │ └── layout.html ├── button.py ├── client_usage.rst ├── conf.py ├── config_file.rst ├── cookieconsent.py ├── credentials.rst ├── endpoints.rst ├── endpoints │ ├── aplus_content.rst │ ├── application_integrations.rst │ ├── application_management.rst │ ├── authorization.rst │ ├── awd.rst │ ├── catalog.rst │ ├── catalog_items.rst │ ├── data_kiosk.rst │ ├── easy_ship.rst │ ├── fba_inbound_eligibility.rst │ ├── fba_small_and_light.rst │ ├── feeds.rst │ ├── finances.rst │ ├── fulfillment_inbound.rst │ ├── fulfillment_outbound.rst │ ├── inventories.rst │ ├── listings_items.rst │ ├── listings_restrictions.rst │ ├── merchant_fulfillment.rst │ ├── messaging.rst │ ├── notifications.rst │ ├── orders.rst │ ├── product_fees.rst │ ├── product_type_definitions.rst │ ├── products.rst │ ├── replenishment.rst │ ├── reports.rst │ ├── sales.rst │ ├── sellers.rst │ ├── services.rst │ ├── shipping.rst │ ├── solicitations.rst │ ├── supply_sources.rst │ ├── tokens.rst │ ├── upload.rst │ ├── vendor_direct_fulfillment_inventory.rst │ ├── vendor_direct_fulfillment_orders.rst │ ├── vendor_direct_fulfillment_payments.rst │ ├── vendor_direct_fulfillment_shipping.rst │ ├── vendor_direct_fulfillment_transactions.rst │ ├── vendor_invoices.rst │ ├── vendor_orders.rst │ ├── vendor_shipments.rst │ └── vendor_transaction_status.rst ├── enums.rst ├── env_variables.rst ├── examples.rst ├── examples │ └── authorisation_example.rst ├── exceptions.rst ├── favicon.ico ├── from_code.rst ├── index.rst ├── installation.rst ├── make.bat ├── pii.rst ├── quickstart.rst ├── requirements.txt ├── responses.rst ├── testing.rst ├── utils.rst ├── utils │ ├── key_maker.rst │ ├── load_all_pages.rst │ └── retry.rst ├── versions.rst └── well-known │ ├── apple-developer-merchantid-domain-association │ └── apple-developer-merchantid-domain-association.json ├── generate_changelog.py ├── make_endpoint ├── __init__.py ├── make_docs.py ├── make_endpoint └── template.py.jinja2 ├── requirements.txt ├── setup.cfg ├── setup.py ├── sp_api ├── __init__.py ├── __version__.py ├── api │ ├── __init__.py │ ├── amazon_warehousing_and_distribu │ │ ├── __init__.py │ │ └── amazon_warehousing_and_distribu.py │ ├── aplus_content │ │ ├── __init__.py │ │ └── aplus_content.py │ ├── application_integrations │ │ ├── __init__.py │ │ └── application_integrations.py │ ├── application_management │ │ ├── __init__.py │ │ └── application_management.py │ ├── authorization │ │ ├── __init__.py │ │ └── authorization.py │ ├── catalog │ │ ├── __init__.py │ │ └── catalog.py │ ├── catalog_items │ │ ├── __init__.py │ │ └── catalog_items.py │ ├── data_kiosk │ │ ├── __init__.py │ │ └── data_kiosk.py │ ├── easy_ship │ │ ├── __init__.py │ │ └── easy_ship.py │ ├── external_fulfillment │ │ ├── __init__.py │ │ └── external_fulfillment.py │ ├── fba_inbound_eligibility │ │ ├── __init__.py │ │ └── fba_inbound_eligibility.py │ ├── fba_small_and_light │ │ ├── __init__.py │ │ └── fba_small_and_light.py │ ├── feeds │ │ ├── __init__.py │ │ ├── docs │ │ │ ├── CancelFeedResponse.md │ │ │ ├── CreateFeedDocumentResponse.md │ │ │ ├── CreateFeedDocumentResult.md │ │ │ ├── CreateFeedDocumentSpecification.md │ │ │ ├── CreateFeedResponse.md │ │ │ ├── CreateFeedResult.md │ │ │ ├── CreateFeedSpecification.md │ │ │ ├── Error.md │ │ │ ├── ErrorList.md │ │ │ ├── Feed.md │ │ │ ├── FeedDocument.md │ │ │ ├── FeedDocumentEncryptionDetails.md │ │ │ ├── FeedList.md │ │ │ ├── FeedOptions.md │ │ │ ├── GetFeedDocumentResponse.md │ │ │ ├── GetFeedResponse.md │ │ │ └── GetFeedsResponse.md │ │ └── feeds.py │ ├── finances │ │ ├── __init__.py │ │ └── finances.py │ ├── fulfillment_inbound │ │ ├── __init__.py │ │ └── fulfillment_inbound.py │ ├── fulfillment_outbound │ │ ├── __init__.py │ │ └── fulfillment_outbound.py │ ├── inventories │ │ ├── __init__.py │ │ ├── docs │ │ │ ├── Error.md │ │ │ ├── ErrorList.md │ │ │ ├── GetInventorySummariesResponse.md │ │ │ ├── GetInventorySummariesResult.md │ │ │ ├── Granularity.md │ │ │ ├── InventoryDetails.md │ │ │ ├── InventorySummaries.md │ │ │ ├── InventorySummary.md │ │ │ ├── Pagination.md │ │ │ ├── ResearchingQuantity.md │ │ │ ├── ResearchingQuantityEntry.md │ │ │ ├── ReservedQuantity.md │ │ │ └── UnfulfillableQuantity.md │ │ └── inventories.py │ ├── listings_items │ │ ├── __init__.py │ │ └── listings_items.py │ ├── listings_restrictions │ │ ├── __init__.py │ │ └── listings_restrictions.py │ ├── merchant_fulfillment │ │ ├── __init__.py │ │ └── merchant_fulfillment.py │ ├── messaging │ │ ├── __init__.py │ │ └── messaging.py │ ├── notifications │ │ ├── __init__.py │ │ └── notifications.py │ ├── orders │ │ ├── __init__.py │ │ └── orders.py │ ├── product_fees │ │ ├── __init__.py │ │ └── product_fees.py │ ├── product_type_definitions │ │ ├── __init__.py │ │ └── product_type_definitions.py │ ├── products │ │ ├── __init__.py │ │ ├── products.py │ │ └── products_definitions.py │ ├── replenishment │ │ ├── __init__.py │ │ └── replenishment.py │ ├── reports │ │ ├── __init__.py │ │ ├── docs │ │ │ ├── CancelReportResponse.md │ │ │ ├── CancelReportScheduleResponse.md │ │ │ ├── CreateReportResponse.md │ │ │ ├── CreateReportResult.md │ │ │ ├── CreateReportScheduleResponse.md │ │ │ ├── CreateReportScheduleResult.md │ │ │ ├── CreateReportScheduleSpecification.md │ │ │ ├── CreateReportSpecification.md │ │ │ ├── Error.md │ │ │ ├── ErrorList.md │ │ │ ├── GetReportDocumentResponse.md │ │ │ ├── GetReportResponse.md │ │ │ ├── GetReportScheduleResponse.md │ │ │ ├── GetReportSchedulesResponse.md │ │ │ ├── GetReportsResponse.md │ │ │ ├── Report.md │ │ │ ├── ReportDocument.md │ │ │ ├── ReportDocumentEncryptionDetails.md │ │ │ ├── ReportList.md │ │ │ ├── ReportOptions.md │ │ │ ├── ReportSchedule.md │ │ │ └── ReportScheduleList.md │ │ └── reports.py │ ├── sales │ │ ├── __init__.py │ │ ├── docs.md │ │ └── sales.py │ ├── sellers │ │ ├── __init__.py │ │ └── sellers.py │ ├── services │ │ ├── __init__.py │ │ └── services.py │ ├── shipping │ │ ├── __init__.py │ │ ├── shipping.py │ │ └── shippingV2.py │ ├── solicitations │ │ ├── __init__.py │ │ └── solicitations.py │ ├── supply_sources │ │ ├── __init__.py │ │ └── supply_sources.py │ ├── tokens │ │ ├── __init__.py │ │ └── tokens.py │ ├── upload │ │ ├── __init__.py │ │ ├── docs │ │ │ ├── CreateUploadDestinationResponse.md │ │ │ ├── Error.md │ │ │ ├── ErrorList.md │ │ │ └── UploadDestination.md │ │ └── upload.py │ ├── vendor_direct_fulfillment_inventory │ │ ├── __init__.py │ │ └── vendor_direct_fulfillment_inventory.py │ ├── vendor_direct_fulfillment_orders │ │ ├── __init__.py │ │ └── vendor_direct_fulfillment_orders.py │ ├── vendor_direct_fulfillment_payments │ │ ├── __init__.py │ │ └── vendor_direct_fulfillment_payments.py │ ├── vendor_direct_fulfillment_shipping │ │ ├── __init__.py │ │ └── vendor_direct_fulfillment_shipping.py │ ├── vendor_direct_fulfillment_transactions │ │ ├── __init__.py │ │ └── vendor_direct_fulfillment_transactions.py │ ├── vendor_invoices │ │ ├── __init__.py │ │ └── vendor_invoices.py │ ├── vendor_orders │ │ ├── __init__.py │ │ └── vendor_orders.py │ ├── vendor_shipments │ │ ├── __init__.py │ │ └── vendor_shipments.py │ └── vendor_transaction_status │ │ ├── __init__.py │ │ └── vendor_transaction_status.py ├── auth │ ├── __init__.py │ ├── access_token_client.py │ ├── access_token_response.py │ ├── credentials.py │ └── exceptions.py ├── base │ ├── ApiResponse.py │ ├── InventoryEnums.py │ ├── __init__.py │ ├── base_client.py │ ├── client.py │ ├── credential_provider.py │ ├── exceptions.py │ ├── feedTypes.py │ ├── fulfillment_channel.py │ ├── helpers.py │ ├── identifiersType.py │ ├── included_data.py │ ├── inegibility_reasons.py │ ├── marketplaces.py │ ├── notifications.py │ ├── processing_status.py │ ├── reportTypes.py │ ├── report_status.py │ ├── sales_enum.py │ └── schedules.py └── util │ ├── __init__.py │ ├── key_maker.py │ ├── load_all_pages.py │ ├── load_date_bound.py │ └── retry.py ├── tests ├── __init__.py ├── api │ ├── __init__.py │ ├── authorization │ │ ├── __init__.py │ │ └── test_authorization.py │ ├── catalog │ │ ├── __init__.py │ │ └── test_catalog.py │ ├── catalog_items │ │ ├── __init__.py │ │ ├── external_fulfillment │ │ │ ├── __init__.py │ │ │ └── test_external_fulfillment.py │ │ └── test_catalog_items.py │ ├── feeds │ │ ├── __init__.py │ │ └── test_feeds.py │ ├── finances │ │ ├── __init__.py │ │ └── test_finances.py │ ├── fulfillment_inbound │ │ ├── __init__.py │ │ └── test_fulfillment_inbound.py │ ├── inbound_eligibility │ │ ├── __init__.py │ │ └── test_inbound_eligibility.py │ ├── inventories │ │ ├── __init__.py │ │ └── test_inventories.py │ ├── listings_items │ │ ├── __init__.py │ │ └── test_listings_items.py │ ├── listings_restrictions │ │ ├── __init__.py │ │ └── test_listings_restrictions.py │ ├── merchant_fullfillment │ │ ├── __init__.py │ │ └── test_merchant_fullfillment.py │ ├── messaging │ │ ├── __init__.py │ │ └── test_messaging.py │ ├── notifications │ │ ├── __init__.py │ │ └── test_notifications.py │ ├── orders │ │ ├── __init__.py │ │ └── test_orders.py │ ├── product_fees │ │ ├── __init__.py │ │ └── product_fees.py │ ├── product_type_definitions │ │ ├── __init__.py │ │ └── test_product_type_definitions.py │ ├── products │ │ ├── __init__.py │ │ └── test_products.py │ ├── reports │ │ ├── __init__.py │ │ └── test_reports.py │ ├── sales │ │ ├── __init__.py │ │ └── test_sales.py │ ├── sellers │ │ ├── __init__.py │ │ └── test_sellers.py │ ├── shipping │ │ └── test_shipping_v2.py │ ├── small_and_light │ │ ├── __init__.py │ │ └── test_small_and_light.py │ ├── tokens │ │ ├── __init__.py │ │ └── test_tokens.py │ └── upload │ │ ├── __init__.py │ │ └── test_upload.py └── client │ ├── __init__.py │ ├── test_auth.py │ ├── test_base.py │ ├── test_credential_provider.py │ └── test_helpers.py └── votes.png /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/workflows/dependabot-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/version_increment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.github/workflows/version_increment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/SECURITY.md -------------------------------------------------------------------------------- /credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/credentials.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.well-known/apple-developer-merchantid-domain-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/.well-known/apple-developer-merchantid-domain-association -------------------------------------------------------------------------------- /docs/.well-known/apple-developer-merchantid-domain-association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/.well-known/apple-developer-merchantid-domain-association.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/apple-developer-merchantid-domain-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/apple-developer-merchantid-domain-association -------------------------------------------------------------------------------- /docs/_static/apple-developer-merchantid-domain-association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/apple-developer-merchantid-domain-association.json -------------------------------------------------------------------------------- /docs/_static/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/button.css -------------------------------------------------------------------------------- /docs/_static/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/cookie.js -------------------------------------------------------------------------------- /docs/_static/cookieconsent.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/cookieconsent.min.js -------------------------------------------------------------------------------- /docs/_static/cookieconsent.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/cookieconsent.min.map -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/favicon.ico.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/favicon.ico.f -------------------------------------------------------------------------------- /docs/_static/fireworks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/fireworks.html -------------------------------------------------------------------------------- /docs/_static/helpful-widget.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/images/15df61f856834dd2a935d78ca80930d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/15df61f856834dd2a935d78ca80930d3.png -------------------------------------------------------------------------------- /docs/_static/images/33d0dab07d52479e9e4fcc21ff17e9d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/33d0dab07d52479e9e4fcc21ff17e9d5.png -------------------------------------------------------------------------------- /docs/_static/images/3e168715082642cd9fee10f38dc6e004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/3e168715082642cd9fee10f38dc6e004.png -------------------------------------------------------------------------------- /docs/_static/images/815da4f3df064233ae798d61d683dda1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/815da4f3df064233ae798d61d683dda1.png -------------------------------------------------------------------------------- /docs/_static/images/8627ad626d39430f8e105fe67a021167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/8627ad626d39430f8e105fe67a021167.png -------------------------------------------------------------------------------- /docs/_static/images/App_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/App_Overview.png -------------------------------------------------------------------------------- /docs/_static/images/Authorise_Application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/Authorise_Application.png -------------------------------------------------------------------------------- /docs/_static/images/Create_App.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/Create_App.png -------------------------------------------------------------------------------- /docs/_static/images/LWA_Credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/LWA_Credentials.png -------------------------------------------------------------------------------- /docs/_static/images/bfb7a8859c53401db3ccd3a27a48e6ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/bfb7a8859c53401db3ccd3a27a48e6ea.png -------------------------------------------------------------------------------- /docs/_static/images/hellocoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/hellocoding.png -------------------------------------------------------------------------------- /docs/_static/images/tubemagic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/images/tubemagic.png -------------------------------------------------------------------------------- /docs/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/logo.svg -------------------------------------------------------------------------------- /docs/_static/redoc/aplusContent_2020-11-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/aplusContent_2020-11-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/authorization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/authorization.html -------------------------------------------------------------------------------- /docs/_static/redoc/catalogItemsV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/catalogItemsV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/catalogItems_2020-12-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/catalogItems_2020-12-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/definitionsProductTypes_2020-09-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/definitionsProductTypes_2020-09-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/fbaInbound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/fbaInbound.html -------------------------------------------------------------------------------- /docs/_static/redoc/fbaInventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/fbaInventory.html -------------------------------------------------------------------------------- /docs/_static/redoc/fbaSmallandLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/fbaSmallandLight.html -------------------------------------------------------------------------------- /docs/_static/redoc/feeds_2020-09-04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/feeds_2020-09-04.html -------------------------------------------------------------------------------- /docs/_static/redoc/feeds_2021-06-30.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/feeds_2021-06-30.html -------------------------------------------------------------------------------- /docs/_static/redoc/financesV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/financesV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/fulfillmentInboundV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/fulfillmentInboundV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/fulfillmentOutbound_2020-07-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/fulfillmentOutbound_2020-07-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/listingsItems_2020-09-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/listingsItems_2020-09-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/listingsItems_2021-08-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/listingsItems_2021-08-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/listingsRestrictions_2021-08-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/listingsRestrictions_2021-08-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/merchantFulfillmentV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/merchantFulfillmentV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/messaging.html -------------------------------------------------------------------------------- /docs/_static/redoc/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/notifications.html -------------------------------------------------------------------------------- /docs/_static/redoc/ordersV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/ordersV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/productFeesV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/productFeesV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/productPricingV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/productPricingV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/reports_2020-09-04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/reports_2020-09-04.html -------------------------------------------------------------------------------- /docs/_static/redoc/reports_2021-06-30.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/reports_2021-06-30.html -------------------------------------------------------------------------------- /docs/_static/redoc/sales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/sales.html -------------------------------------------------------------------------------- /docs/_static/redoc/sellers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/sellers.html -------------------------------------------------------------------------------- /docs/_static/redoc/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/services.html -------------------------------------------------------------------------------- /docs/_static/redoc/shipmentInvoicingV0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/shipmentInvoicingV0.html -------------------------------------------------------------------------------- /docs/_static/redoc/shipping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/shipping.html -------------------------------------------------------------------------------- /docs/_static/redoc/solicitations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/solicitations.html -------------------------------------------------------------------------------- /docs/_static/redoc/tokens_2021-03-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/tokens_2021-03-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/uploads_2020-11-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/uploads_2020-11-01.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorDirectFulfillmentInventoryV1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorDirectFulfillmentInventoryV1.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorDirectFulfillmentOrdersV1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorDirectFulfillmentOrdersV1.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorDirectFulfillmentPaymentsV1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorDirectFulfillmentPaymentsV1.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorDirectFulfillmentShippingV1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorDirectFulfillmentShippingV1.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorDirectFulfillmentTransactionsV1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorDirectFulfillmentTransactionsV1.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorInvoices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorInvoices.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorOrders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorOrders.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorShipments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorShipments.html -------------------------------------------------------------------------------- /docs/_static/redoc/vendorTransactionStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_static/redoc/vendorTransactionStatus.html -------------------------------------------------------------------------------- /docs/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_templates/footer.html -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/button.py -------------------------------------------------------------------------------- /docs/client_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/client_usage.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config_file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/config_file.rst -------------------------------------------------------------------------------- /docs/cookieconsent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/cookieconsent.py -------------------------------------------------------------------------------- /docs/credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/credentials.rst -------------------------------------------------------------------------------- /docs/endpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints.rst -------------------------------------------------------------------------------- /docs/endpoints/aplus_content.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/aplus_content.rst -------------------------------------------------------------------------------- /docs/endpoints/application_integrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/application_integrations.rst -------------------------------------------------------------------------------- /docs/endpoints/application_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/application_management.rst -------------------------------------------------------------------------------- /docs/endpoints/authorization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/authorization.rst -------------------------------------------------------------------------------- /docs/endpoints/awd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/awd.rst -------------------------------------------------------------------------------- /docs/endpoints/catalog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/catalog.rst -------------------------------------------------------------------------------- /docs/endpoints/catalog_items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/catalog_items.rst -------------------------------------------------------------------------------- /docs/endpoints/data_kiosk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/data_kiosk.rst -------------------------------------------------------------------------------- /docs/endpoints/easy_ship.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/easy_ship.rst -------------------------------------------------------------------------------- /docs/endpoints/fba_inbound_eligibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/fba_inbound_eligibility.rst -------------------------------------------------------------------------------- /docs/endpoints/fba_small_and_light.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/fba_small_and_light.rst -------------------------------------------------------------------------------- /docs/endpoints/feeds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/feeds.rst -------------------------------------------------------------------------------- /docs/endpoints/finances.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/finances.rst -------------------------------------------------------------------------------- /docs/endpoints/fulfillment_inbound.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/fulfillment_inbound.rst -------------------------------------------------------------------------------- /docs/endpoints/fulfillment_outbound.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/fulfillment_outbound.rst -------------------------------------------------------------------------------- /docs/endpoints/inventories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/inventories.rst -------------------------------------------------------------------------------- /docs/endpoints/listings_items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/listings_items.rst -------------------------------------------------------------------------------- /docs/endpoints/listings_restrictions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/listings_restrictions.rst -------------------------------------------------------------------------------- /docs/endpoints/merchant_fulfillment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/merchant_fulfillment.rst -------------------------------------------------------------------------------- /docs/endpoints/messaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/messaging.rst -------------------------------------------------------------------------------- /docs/endpoints/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/notifications.rst -------------------------------------------------------------------------------- /docs/endpoints/orders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/orders.rst -------------------------------------------------------------------------------- /docs/endpoints/product_fees.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/product_fees.rst -------------------------------------------------------------------------------- /docs/endpoints/product_type_definitions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/product_type_definitions.rst -------------------------------------------------------------------------------- /docs/endpoints/products.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/products.rst -------------------------------------------------------------------------------- /docs/endpoints/replenishment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/replenishment.rst -------------------------------------------------------------------------------- /docs/endpoints/reports.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/reports.rst -------------------------------------------------------------------------------- /docs/endpoints/sales.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/sales.rst -------------------------------------------------------------------------------- /docs/endpoints/sellers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/sellers.rst -------------------------------------------------------------------------------- /docs/endpoints/services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/services.rst -------------------------------------------------------------------------------- /docs/endpoints/shipping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/shipping.rst -------------------------------------------------------------------------------- /docs/endpoints/solicitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/solicitations.rst -------------------------------------------------------------------------------- /docs/endpoints/supply_sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/supply_sources.rst -------------------------------------------------------------------------------- /docs/endpoints/tokens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/tokens.rst -------------------------------------------------------------------------------- /docs/endpoints/upload.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/upload.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_direct_fulfillment_inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_direct_fulfillment_inventory.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_direct_fulfillment_orders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_direct_fulfillment_orders.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_direct_fulfillment_payments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_direct_fulfillment_payments.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_direct_fulfillment_shipping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_direct_fulfillment_shipping.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_direct_fulfillment_transactions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_direct_fulfillment_transactions.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_invoices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_invoices.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_orders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_orders.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_shipments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_shipments.rst -------------------------------------------------------------------------------- /docs/endpoints/vendor_transaction_status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/endpoints/vendor_transaction_status.rst -------------------------------------------------------------------------------- /docs/enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/enums.rst -------------------------------------------------------------------------------- /docs/env_variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/env_variables.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/examples/authorisation_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/examples/authorisation_example.rst -------------------------------------------------------------------------------- /docs/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/exceptions.rst -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/from_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/from_code.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pii.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/pii.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/responses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/responses.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/utils.rst -------------------------------------------------------------------------------- /docs/utils/key_maker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/utils/key_maker.rst -------------------------------------------------------------------------------- /docs/utils/load_all_pages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/utils/load_all_pages.rst -------------------------------------------------------------------------------- /docs/utils/retry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/utils/retry.rst -------------------------------------------------------------------------------- /docs/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/versions.rst -------------------------------------------------------------------------------- /docs/well-known/apple-developer-merchantid-domain-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/well-known/apple-developer-merchantid-domain-association -------------------------------------------------------------------------------- /docs/well-known/apple-developer-merchantid-domain-association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/docs/well-known/apple-developer-merchantid-domain-association.json -------------------------------------------------------------------------------- /generate_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/generate_changelog.py -------------------------------------------------------------------------------- /make_endpoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /make_endpoint/make_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/make_endpoint/make_docs.py -------------------------------------------------------------------------------- /make_endpoint/make_endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/make_endpoint/make_endpoint -------------------------------------------------------------------------------- /make_endpoint/template.py.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/make_endpoint/template.py.jinja2 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/setup.py -------------------------------------------------------------------------------- /sp_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.9.50' 2 | -------------------------------------------------------------------------------- /sp_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/__init__.py -------------------------------------------------------------------------------- /sp_api/api/amazon_warehousing_and_distribu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py -------------------------------------------------------------------------------- /sp_api/api/aplus_content/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/aplus_content/aplus_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/aplus_content/aplus_content.py -------------------------------------------------------------------------------- /sp_api/api/application_integrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/application_integrations/application_integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/application_integrations/application_integrations.py -------------------------------------------------------------------------------- /sp_api/api/application_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/application_management/application_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/application_management/application_management.py -------------------------------------------------------------------------------- /sp_api/api/authorization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/authorization/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/authorization/authorization.py -------------------------------------------------------------------------------- /sp_api/api/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/catalog/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/catalog/catalog.py -------------------------------------------------------------------------------- /sp_api/api/catalog_items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/catalog_items/catalog_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/catalog_items/catalog_items.py -------------------------------------------------------------------------------- /sp_api/api/data_kiosk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/data_kiosk/data_kiosk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/data_kiosk/data_kiosk.py -------------------------------------------------------------------------------- /sp_api/api/easy_ship/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/easy_ship/easy_ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/easy_ship/easy_ship.py -------------------------------------------------------------------------------- /sp_api/api/external_fulfillment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/external_fulfillment/external_fulfillment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/external_fulfillment/external_fulfillment.py -------------------------------------------------------------------------------- /sp_api/api/fba_inbound_eligibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/fba_inbound_eligibility/fba_inbound_eligibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/fba_inbound_eligibility/fba_inbound_eligibility.py -------------------------------------------------------------------------------- /sp_api/api/fba_small_and_light/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/fba_small_and_light/fba_small_and_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/fba_small_and_light/fba_small_and_light.py -------------------------------------------------------------------------------- /sp_api/api/feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/CancelFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/CancelFeedResponse.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/CreateFeedDocumentResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/CreateFeedDocumentResponse.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/CreateFeedDocumentResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/CreateFeedDocumentResult.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/CreateFeedDocumentSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/CreateFeedDocumentSpecification.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/CreateFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/CreateFeedResponse.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/CreateFeedResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/CreateFeedResult.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/CreateFeedSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/CreateFeedSpecification.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/Error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/Error.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/ErrorList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/ErrorList.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/Feed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/Feed.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/FeedDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/FeedDocument.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/FeedDocumentEncryptionDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/FeedDocumentEncryptionDetails.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/FeedList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/FeedList.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/FeedOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/FeedOptions.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/GetFeedDocumentResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/GetFeedDocumentResponse.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/GetFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/GetFeedResponse.md -------------------------------------------------------------------------------- /sp_api/api/feeds/docs/GetFeedsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/docs/GetFeedsResponse.md -------------------------------------------------------------------------------- /sp_api/api/feeds/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/feeds/feeds.py -------------------------------------------------------------------------------- /sp_api/api/finances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/finances/finances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/finances/finances.py -------------------------------------------------------------------------------- /sp_api/api/fulfillment_inbound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/fulfillment_inbound/fulfillment_inbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/fulfillment_inbound/fulfillment_inbound.py -------------------------------------------------------------------------------- /sp_api/api/fulfillment_outbound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/fulfillment_outbound/fulfillment_outbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/fulfillment_outbound/fulfillment_outbound.py -------------------------------------------------------------------------------- /sp_api/api/inventories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/Error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/Error.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/ErrorList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/ErrorList.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/GetInventorySummariesResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/GetInventorySummariesResponse.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/GetInventorySummariesResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/GetInventorySummariesResult.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/Granularity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/Granularity.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/InventoryDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/InventoryDetails.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/InventorySummaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/InventorySummaries.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/InventorySummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/InventorySummary.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/Pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/Pagination.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/ResearchingQuantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/ResearchingQuantity.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/ResearchingQuantityEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/ResearchingQuantityEntry.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/ReservedQuantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/ReservedQuantity.md -------------------------------------------------------------------------------- /sp_api/api/inventories/docs/UnfulfillableQuantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/docs/UnfulfillableQuantity.md -------------------------------------------------------------------------------- /sp_api/api/inventories/inventories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/inventories/inventories.py -------------------------------------------------------------------------------- /sp_api/api/listings_items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/listings_items/listings_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/listings_items/listings_items.py -------------------------------------------------------------------------------- /sp_api/api/listings_restrictions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/listings_restrictions/listings_restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/listings_restrictions/listings_restrictions.py -------------------------------------------------------------------------------- /sp_api/api/merchant_fulfillment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/merchant_fulfillment/merchant_fulfillment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/merchant_fulfillment/merchant_fulfillment.py -------------------------------------------------------------------------------- /sp_api/api/messaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/messaging/messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/messaging/messaging.py -------------------------------------------------------------------------------- /sp_api/api/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/notifications/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/notifications/notifications.py -------------------------------------------------------------------------------- /sp_api/api/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/orders/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/orders/orders.py -------------------------------------------------------------------------------- /sp_api/api/product_fees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/product_fees/product_fees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/product_fees/product_fees.py -------------------------------------------------------------------------------- /sp_api/api/product_type_definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/product_type_definitions/product_type_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/product_type_definitions/product_type_definitions.py -------------------------------------------------------------------------------- /sp_api/api/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/products/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/products/products.py -------------------------------------------------------------------------------- /sp_api/api/products/products_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/products/products_definitions.py -------------------------------------------------------------------------------- /sp_api/api/replenishment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/replenishment/replenishment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/replenishment/replenishment.py -------------------------------------------------------------------------------- /sp_api/api/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CancelReportResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CancelReportResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CancelReportScheduleResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CancelReportScheduleResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CreateReportResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CreateReportResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CreateReportResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CreateReportResult.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CreateReportScheduleResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CreateReportScheduleResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CreateReportScheduleResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CreateReportScheduleResult.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CreateReportScheduleSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CreateReportScheduleSpecification.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/CreateReportSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/CreateReportSpecification.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/Error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/Error.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/ErrorList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/ErrorList.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/GetReportDocumentResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/GetReportDocumentResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/GetReportResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/GetReportResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/GetReportScheduleResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/GetReportScheduleResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/GetReportSchedulesResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/GetReportSchedulesResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/GetReportsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/GetReportsResponse.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/Report.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/ReportDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/ReportDocument.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/ReportDocumentEncryptionDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/ReportDocumentEncryptionDetails.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/ReportList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/ReportList.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/ReportOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/ReportOptions.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/ReportSchedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/ReportSchedule.md -------------------------------------------------------------------------------- /sp_api/api/reports/docs/ReportScheduleList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/docs/ReportScheduleList.md -------------------------------------------------------------------------------- /sp_api/api/reports/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/reports/reports.py -------------------------------------------------------------------------------- /sp_api/api/sales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/sales/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/sales/docs.md -------------------------------------------------------------------------------- /sp_api/api/sales/sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/sales/sales.py -------------------------------------------------------------------------------- /sp_api/api/sellers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/sellers/sellers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/sellers/sellers.py -------------------------------------------------------------------------------- /sp_api/api/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/services/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/services/services.py -------------------------------------------------------------------------------- /sp_api/api/shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/shipping/shipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/shipping/shipping.py -------------------------------------------------------------------------------- /sp_api/api/shipping/shippingV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/shipping/shippingV2.py -------------------------------------------------------------------------------- /sp_api/api/solicitations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/solicitations/solicitations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/solicitations/solicitations.py -------------------------------------------------------------------------------- /sp_api/api/supply_sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/supply_sources/supply_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/supply_sources/supply_sources.py -------------------------------------------------------------------------------- /sp_api/api/tokens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/tokens/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/tokens/tokens.py -------------------------------------------------------------------------------- /sp_api/api/upload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/upload/docs/CreateUploadDestinationResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/upload/docs/CreateUploadDestinationResponse.md -------------------------------------------------------------------------------- /sp_api/api/upload/docs/Error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/upload/docs/Error.md -------------------------------------------------------------------------------- /sp_api/api/upload/docs/ErrorList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/upload/docs/ErrorList.md -------------------------------------------------------------------------------- /sp_api/api/upload/docs/UploadDestination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/upload/docs/UploadDestination.md -------------------------------------------------------------------------------- /sp_api/api/upload/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/upload/upload.py -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_payments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py -------------------------------------------------------------------------------- /sp_api/api/vendor_invoices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_invoices/vendor_invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_invoices/vendor_invoices.py -------------------------------------------------------------------------------- /sp_api/api/vendor_orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_orders/vendor_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_orders/vendor_orders.py -------------------------------------------------------------------------------- /sp_api/api/vendor_shipments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_shipments/vendor_shipments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_shipments/vendor_shipments.py -------------------------------------------------------------------------------- /sp_api/api/vendor_transaction_status/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sp_api/api/vendor_transaction_status/vendor_transaction_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/api/vendor_transaction_status/vendor_transaction_status.py -------------------------------------------------------------------------------- /sp_api/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/auth/__init__.py -------------------------------------------------------------------------------- /sp_api/auth/access_token_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/auth/access_token_client.py -------------------------------------------------------------------------------- /sp_api/auth/access_token_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/auth/access_token_response.py -------------------------------------------------------------------------------- /sp_api/auth/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/auth/credentials.py -------------------------------------------------------------------------------- /sp_api/auth/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/auth/exceptions.py -------------------------------------------------------------------------------- /sp_api/base/ApiResponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/ApiResponse.py -------------------------------------------------------------------------------- /sp_api/base/InventoryEnums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/InventoryEnums.py -------------------------------------------------------------------------------- /sp_api/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/__init__.py -------------------------------------------------------------------------------- /sp_api/base/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/base_client.py -------------------------------------------------------------------------------- /sp_api/base/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/client.py -------------------------------------------------------------------------------- /sp_api/base/credential_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/credential_provider.py -------------------------------------------------------------------------------- /sp_api/base/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/exceptions.py -------------------------------------------------------------------------------- /sp_api/base/feedTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/feedTypes.py -------------------------------------------------------------------------------- /sp_api/base/fulfillment_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/fulfillment_channel.py -------------------------------------------------------------------------------- /sp_api/base/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/helpers.py -------------------------------------------------------------------------------- /sp_api/base/identifiersType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/identifiersType.py -------------------------------------------------------------------------------- /sp_api/base/included_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/included_data.py -------------------------------------------------------------------------------- /sp_api/base/inegibility_reasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/inegibility_reasons.py -------------------------------------------------------------------------------- /sp_api/base/marketplaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/marketplaces.py -------------------------------------------------------------------------------- /sp_api/base/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/notifications.py -------------------------------------------------------------------------------- /sp_api/base/processing_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/processing_status.py -------------------------------------------------------------------------------- /sp_api/base/reportTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/reportTypes.py -------------------------------------------------------------------------------- /sp_api/base/report_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/report_status.py -------------------------------------------------------------------------------- /sp_api/base/sales_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/sales_enum.py -------------------------------------------------------------------------------- /sp_api/base/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/base/schedules.py -------------------------------------------------------------------------------- /sp_api/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/util/__init__.py -------------------------------------------------------------------------------- /sp_api/util/key_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/util/key_maker.py -------------------------------------------------------------------------------- /sp_api/util/load_all_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/util/load_all_pages.py -------------------------------------------------------------------------------- /sp_api/util/load_date_bound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/util/load_date_bound.py -------------------------------------------------------------------------------- /sp_api/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/sp_api/util/retry.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/authorization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/authorization/test_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/authorization/test_authorization.py -------------------------------------------------------------------------------- /tests/api/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/catalog/test_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/catalog/test_catalog.py -------------------------------------------------------------------------------- /tests/api/catalog_items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/catalog_items/external_fulfillment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/catalog_items/external_fulfillment/test_external_fulfillment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/catalog_items/external_fulfillment/test_external_fulfillment.py -------------------------------------------------------------------------------- /tests/api/catalog_items/test_catalog_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/catalog_items/test_catalog_items.py -------------------------------------------------------------------------------- /tests/api/feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/feeds/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/feeds/test_feeds.py -------------------------------------------------------------------------------- /tests/api/finances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/finances/test_finances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/finances/test_finances.py -------------------------------------------------------------------------------- /tests/api/fulfillment_inbound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/fulfillment_inbound/test_fulfillment_inbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/fulfillment_inbound/test_fulfillment_inbound.py -------------------------------------------------------------------------------- /tests/api/inbound_eligibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/inbound_eligibility/test_inbound_eligibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/inbound_eligibility/test_inbound_eligibility.py -------------------------------------------------------------------------------- /tests/api/inventories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/inventories/test_inventories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/inventories/test_inventories.py -------------------------------------------------------------------------------- /tests/api/listings_items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/listings_items/test_listings_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/listings_items/test_listings_items.py -------------------------------------------------------------------------------- /tests/api/listings_restrictions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/listings_restrictions/test_listings_restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/listings_restrictions/test_listings_restrictions.py -------------------------------------------------------------------------------- /tests/api/merchant_fullfillment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/merchant_fullfillment/test_merchant_fullfillment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/merchant_fullfillment/test_merchant_fullfillment.py -------------------------------------------------------------------------------- /tests/api/messaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/messaging/test_messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/messaging/test_messaging.py -------------------------------------------------------------------------------- /tests/api/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/notifications/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/notifications/test_notifications.py -------------------------------------------------------------------------------- /tests/api/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/orders/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/orders/test_orders.py -------------------------------------------------------------------------------- /tests/api/product_fees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/product_fees/product_fees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/product_fees/product_fees.py -------------------------------------------------------------------------------- /tests/api/product_type_definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/product_type_definitions/test_product_type_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/product_type_definitions/test_product_type_definitions.py -------------------------------------------------------------------------------- /tests/api/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/products/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/products/test_products.py -------------------------------------------------------------------------------- /tests/api/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/reports/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/reports/test_reports.py -------------------------------------------------------------------------------- /tests/api/sales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/sales/test_sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/sales/test_sales.py -------------------------------------------------------------------------------- /tests/api/sellers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/sellers/test_sellers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/shipping/test_shipping_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/shipping/test_shipping_v2.py -------------------------------------------------------------------------------- /tests/api/small_and_light/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/small_and_light/test_small_and_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/small_and_light/test_small_and_light.py -------------------------------------------------------------------------------- /tests/api/tokens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/tokens/test_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/tokens/test_tokens.py -------------------------------------------------------------------------------- /tests/api/upload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/upload/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/api/upload/test_upload.py -------------------------------------------------------------------------------- /tests/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/client/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/client/test_auth.py -------------------------------------------------------------------------------- /tests/client/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/client/test_base.py -------------------------------------------------------------------------------- /tests/client/test_credential_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/client/test_credential_provider.py -------------------------------------------------------------------------------- /tests/client/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/tests/client/test_helpers.py -------------------------------------------------------------------------------- /votes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleweaver/python-amazon-sp-api/HEAD/votes.png --------------------------------------------------------------------------------