python-amazon-sp-api 1.9.60__py3-none-any.whl → 2.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_amazon_sp_api-1.9.60.dist-info → python_amazon_sp_api-2.0.2.dist-info}/METADATA +41 -14
- python_amazon_sp_api-2.0.2.dist-info/RECORD +249 -0
- sp_api/__version__.py +1 -1
- sp_api/api/catalog/catalog.py +3 -4
- sp_api/api/catalog_items/catalog_items.py +3 -6
- sp_api/api/data_kiosk/data_kiosk.py +5 -6
- sp_api/api/feeds/feeds.py +11 -8
- sp_api/api/fulfillment_inbound/fulfillment_inbound.py +2 -2
- sp_api/api/inventories/inventories.py +2 -7
- sp_api/api/listings_items/listings_items.py +3 -24
- sp_api/api/products/products.py +3 -1
- sp_api/api/reports/reports.py +61 -97
- sp_api/api/sales/sales.py +2 -2
- sp_api/asyncio/__init__.py +0 -0
- sp_api/asyncio/api/__init__.py +164 -0
- sp_api/asyncio/api/amazon_warehousing_and_distribu/__init__.py +9 -0
- sp_api/asyncio/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py +130 -0
- sp_api/asyncio/api/aplus_content/__init__.py +5 -0
- sp_api/asyncio/api/aplus_content/aplus_content.py +330 -0
- sp_api/asyncio/api/application_integrations/__init__.py +5 -0
- sp_api/asyncio/api/application_integrations/application_integrations.py +119 -0
- sp_api/asyncio/api/application_management/__init__.py +5 -0
- sp_api/asyncio/api/application_management/application_management.py +36 -0
- sp_api/asyncio/api/authorization/__init__.py +5 -0
- sp_api/asyncio/api/authorization/authorization.py +54 -0
- sp_api/asyncio/api/catalog/__init__.py +5 -0
- sp_api/asyncio/api/catalog/catalog.py +111 -0
- sp_api/asyncio/api/catalog_items/__init__.py +6 -0
- sp_api/asyncio/api/catalog_items/catalog_items.py +93 -0
- sp_api/asyncio/api/clients/__init__.py +1 -0
- sp_api/asyncio/api/customer_feedback/__init__.py +5 -0
- sp_api/asyncio/api/customer_feedback/customer_feedback.py +111 -0
- sp_api/asyncio/api/data_kiosk/__init__.py +5 -0
- sp_api/asyncio/api/data_kiosk/data_kiosk.py +236 -0
- sp_api/asyncio/api/easy_ship/__init__.py +5 -0
- sp_api/asyncio/api/easy_ship/easy_ship.py +191 -0
- sp_api/asyncio/api/external_fulfillment/__init__.py +5 -0
- sp_api/asyncio/api/external_fulfillment/external_fulfillment.py +706 -0
- sp_api/asyncio/api/fba_inbound_eligibility/__init__.py +5 -0
- sp_api/asyncio/api/fba_inbound_eligibility/fba_inbound_eligibility.py +96 -0
- sp_api/asyncio/api/fba_small_and_light/__init__.py +5 -0
- sp_api/asyncio/api/fba_small_and_light/fba_small_and_light.py +213 -0
- sp_api/asyncio/api/feeds/__init__.py +0 -0
- sp_api/asyncio/api/feeds/feeds.py +260 -0
- sp_api/asyncio/api/finances/__init__.py +0 -0
- sp_api/asyncio/api/finances/finances.py +100 -0
- sp_api/asyncio/api/fulfillment_inbound/__init__.py +0 -0
- sp_api/asyncio/api/fulfillment_inbound/fulfillment_inbound.py +1798 -0
- sp_api/asyncio/api/fulfillment_outbound/__init__.py +0 -0
- sp_api/asyncio/api/fulfillment_outbound/fulfillment_outbound.py +736 -0
- sp_api/asyncio/api/inventories/__init__.py +0 -0
- sp_api/asyncio/api/inventories/inventories.py +74 -0
- sp_api/asyncio/api/listings_items/__init__.py +0 -0
- sp_api/asyncio/api/listings_items/listings_items.py +170 -0
- sp_api/asyncio/api/listings_restrictions/__init__.py +0 -0
- sp_api/asyncio/api/listings_restrictions/listings_restrictions.py +36 -0
- sp_api/asyncio/api/merchant_fulfillment/__init__.py +0 -0
- sp_api/asyncio/api/merchant_fulfillment/merchant_fulfillment.py +384 -0
- sp_api/asyncio/api/messaging/__init__.py +0 -0
- sp_api/asyncio/api/messaging/messaging.py +511 -0
- sp_api/asyncio/api/models/__init__.py +4 -0
- sp_api/asyncio/api/notifications/__init__.py +0 -0
- sp_api/asyncio/api/notifications/notifications.py +295 -0
- sp_api/asyncio/api/orders/__init__.py +0 -0
- sp_api/asyncio/api/orders/orders.py +356 -0
- sp_api/asyncio/api/overrides/__init__.py +1 -0
- sp_api/asyncio/api/product_fees/__init__.py +0 -0
- sp_api/asyncio/api/product_fees/product_fees.py +237 -0
- sp_api/asyncio/api/product_type_definitions/__init__.py +0 -0
- sp_api/asyncio/api/product_type_definitions/product_type_definitions.py +75 -0
- sp_api/asyncio/api/products/__init__.py +0 -0
- sp_api/asyncio/api/products/products.py +405 -0
- sp_api/asyncio/api/products/products_definitions.py +170 -0
- sp_api/asyncio/api/replenishment/__init__.py +0 -0
- sp_api/asyncio/api/replenishment/replenishment.py +121 -0
- sp_api/asyncio/api/reports/__init__.py +0 -0
- sp_api/asyncio/api/reports/reports.py +439 -0
- sp_api/asyncio/api/sales/__init__.py +0 -0
- sp_api/asyncio/api/sales/sales.py +93 -0
- sp_api/asyncio/api/sellers/__init__.py +0 -0
- sp_api/asyncio/api/sellers/sellers.py +70 -0
- sp_api/asyncio/api/services/__init__.py +0 -0
- sp_api/asyncio/api/services/services.py +218 -0
- sp_api/asyncio/api/shipping/__init__.py +0 -0
- sp_api/asyncio/api/shipping/shipping.py +459 -0
- sp_api/asyncio/api/shipping/shippingV2.py +651 -0
- sp_api/asyncio/api/solicitations/__init__.py +0 -0
- sp_api/asyncio/api/solicitations/solicitations.py +78 -0
- sp_api/asyncio/api/supply_sources/__init__.py +0 -0
- sp_api/asyncio/api/supply_sources/supply_sources.py +138 -0
- sp_api/asyncio/api/tokens/__init__.py +0 -0
- sp_api/asyncio/api/tokens/tokens.py +65 -0
- sp_api/asyncio/api/upload/__init__.py +0 -0
- sp_api/asyncio/api/upload/upload.py +18 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_inventory/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py +64 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_orders/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py +196 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_payments/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py +254 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_shipping/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py +627 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_transactions/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py +43 -0
- sp_api/asyncio/api/vendor_invoices/__init__.py +0 -0
- sp_api/asyncio/api/vendor_invoices/vendor_invoices.py +295 -0
- sp_api/asyncio/api/vendor_orders/__init__.py +0 -0
- sp_api/asyncio/api/vendor_orders/vendor_orders.py +210 -0
- sp_api/asyncio/api/vendor_shipments/__init__.py +0 -0
- sp_api/asyncio/api/vendor_shipments/vendor_shipments.py +118 -0
- sp_api/asyncio/api/vendor_transaction_status/__init__.py +0 -0
- sp_api/asyncio/api/vendor_transaction_status/vendor_transaction_status.py +41 -0
- sp_api/asyncio/auth/__init__.py +12 -0
- sp_api/asyncio/auth/access_token_client.py +145 -0
- sp_api/asyncio/auth/exceptions.py +5 -0
- sp_api/asyncio/base/__init__.py +53 -0
- sp_api/asyncio/base/_transport_httpx.py +50 -0
- sp_api/asyncio/base/base_client.py +8 -0
- sp_api/asyncio/base/client.py +169 -0
- sp_api/asyncio/util/__init__.py +29 -0
- sp_api/asyncio/util/key_maker.py +5 -0
- sp_api/asyncio/util/load_all_pages.py +55 -0
- sp_api/asyncio/util/load_date_bound.py +53 -0
- sp_api/asyncio/util/retry.py +88 -0
- sp_api/auth/_core.py +39 -0
- sp_api/auth/access_token_client.py +18 -30
- sp_api/base/_core.py +110 -0
- sp_api/base/_transport_httpx.py +39 -0
- sp_api/base/client.py +40 -63
- sp_api/util/__init__.py +16 -0
- sp_api/util/params.py +57 -0
- sp_api/util/report_document.py +154 -0
- python_amazon_sp_api-1.9.60.dist-info/RECORD +0 -133
- {python_amazon_sp_api-1.9.60.data → python_amazon_sp_api-2.0.2.data}/scripts/make_endpoint +0 -0
- {python_amazon_sp_api-1.9.60.dist-info → python_amazon_sp_api-2.0.2.dist-info}/WHEEL +0 -0
- {python_amazon_sp_api-1.9.60.dist-info → python_amazon_sp_api-2.0.2.dist-info}/licenses/LICENSE +0 -0
- {python_amazon_sp_api-1.9.60.dist-info → python_amazon_sp_api-2.0.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import codecs
|
|
2
|
+
import zlib
|
|
3
|
+
from io import BytesIO, StringIO
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def resolve_character_code(response_encoding, fallback="iso-8859-1"):
|
|
7
|
+
character_code = response_encoding or fallback
|
|
8
|
+
if character_code and character_code.lower() == "windows-31j":
|
|
9
|
+
character_code = "cp932"
|
|
10
|
+
return character_code
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def decompress_bytes(document, compression_algorithm):
|
|
14
|
+
if compression_algorithm:
|
|
15
|
+
return zlib.decompress(bytearray(document), 15 + 32)
|
|
16
|
+
return document
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def decode_document(document, character_code):
|
|
20
|
+
if character_code:
|
|
21
|
+
try:
|
|
22
|
+
return document.decode(character_code)
|
|
23
|
+
except Exception:
|
|
24
|
+
return document
|
|
25
|
+
return document
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def handle_file(file, document, encoding):
|
|
29
|
+
if isinstance(file, str):
|
|
30
|
+
with open(file, "w+", encoding=encoding) as text_file:
|
|
31
|
+
text_file.write(document)
|
|
32
|
+
elif isinstance(file, BytesIO):
|
|
33
|
+
file.write(document.encode(encoding))
|
|
34
|
+
file.seek(0)
|
|
35
|
+
elif isinstance(file, StringIO):
|
|
36
|
+
file.write(document)
|
|
37
|
+
file.seek(0)
|
|
38
|
+
else:
|
|
39
|
+
file.write(document)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def _open_stream_target(file, encoding):
|
|
43
|
+
if isinstance(file, str):
|
|
44
|
+
return open(file, "w+", encoding=encoding), True, True
|
|
45
|
+
if isinstance(file, StringIO):
|
|
46
|
+
return file, True, False
|
|
47
|
+
if isinstance(file, BytesIO):
|
|
48
|
+
return file, False, False
|
|
49
|
+
if hasattr(file, "mode") and "b" in file.mode:
|
|
50
|
+
return file, False, False
|
|
51
|
+
return file, True, False
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def _stream_bytes_to_target_sync(
|
|
55
|
+
chunk_iter, file, encoding, compression_algorithm, close_after
|
|
56
|
+
):
|
|
57
|
+
decompressor = zlib.decompressobj(15 + 32) if compression_algorithm else None
|
|
58
|
+
target, is_text, should_close = file
|
|
59
|
+
decoder = (
|
|
60
|
+
codecs.getincrementaldecoder(encoding)(errors="replace") if is_text else None
|
|
61
|
+
)
|
|
62
|
+
try:
|
|
63
|
+
for chunk in chunk_iter:
|
|
64
|
+
if decompressor:
|
|
65
|
+
chunk = decompressor.decompress(chunk)
|
|
66
|
+
if decoder:
|
|
67
|
+
text = decoder.decode(chunk)
|
|
68
|
+
if text:
|
|
69
|
+
target.write(text)
|
|
70
|
+
else:
|
|
71
|
+
target.write(chunk)
|
|
72
|
+
if decompressor:
|
|
73
|
+
remainder = decompressor.flush()
|
|
74
|
+
if remainder:
|
|
75
|
+
if decoder:
|
|
76
|
+
text = decoder.decode(remainder)
|
|
77
|
+
if text:
|
|
78
|
+
target.write(text)
|
|
79
|
+
else:
|
|
80
|
+
target.write(remainder)
|
|
81
|
+
if decoder:
|
|
82
|
+
tail = decoder.decode(b"", final=True)
|
|
83
|
+
if tail:
|
|
84
|
+
target.write(tail)
|
|
85
|
+
finally:
|
|
86
|
+
if close_after and should_close:
|
|
87
|
+
target.close()
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
async def _stream_bytes_to_target_async(
|
|
91
|
+
chunk_iter, file, encoding, compression_algorithm, close_after
|
|
92
|
+
):
|
|
93
|
+
decompressor = zlib.decompressobj(15 + 32) if compression_algorithm else None
|
|
94
|
+
target, is_text, should_close = file
|
|
95
|
+
decoder = (
|
|
96
|
+
codecs.getincrementaldecoder(encoding)(errors="replace") if is_text else None
|
|
97
|
+
)
|
|
98
|
+
try:
|
|
99
|
+
async for chunk in chunk_iter:
|
|
100
|
+
if decompressor:
|
|
101
|
+
chunk = decompressor.decompress(chunk)
|
|
102
|
+
if decoder:
|
|
103
|
+
text = decoder.decode(chunk)
|
|
104
|
+
if text:
|
|
105
|
+
target.write(text)
|
|
106
|
+
else:
|
|
107
|
+
target.write(chunk)
|
|
108
|
+
if decompressor:
|
|
109
|
+
remainder = decompressor.flush()
|
|
110
|
+
if remainder:
|
|
111
|
+
if decoder:
|
|
112
|
+
text = decoder.decode(remainder)
|
|
113
|
+
if text:
|
|
114
|
+
target.write(text)
|
|
115
|
+
else:
|
|
116
|
+
target.write(remainder)
|
|
117
|
+
if decoder:
|
|
118
|
+
tail = decoder.decode(b"", final=True)
|
|
119
|
+
if tail:
|
|
120
|
+
target.write(tail)
|
|
121
|
+
finally:
|
|
122
|
+
if close_after and should_close:
|
|
123
|
+
target.close()
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
def _iter_response_bytes_sync(response):
|
|
127
|
+
if hasattr(response, "iter_content"):
|
|
128
|
+
return response.iter_content(chunk_size=8192)
|
|
129
|
+
if hasattr(response, "iter_bytes"):
|
|
130
|
+
return response.iter_bytes()
|
|
131
|
+
return response.iter_content(chunk_size=8192)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
def stream_to_file_sync(response, file, encoding, compression_algorithm):
|
|
135
|
+
target = _open_stream_target(file, encoding)
|
|
136
|
+
_stream_bytes_to_target_sync(
|
|
137
|
+
_iter_response_bytes_sync(response),
|
|
138
|
+
target,
|
|
139
|
+
encoding,
|
|
140
|
+
compression_algorithm,
|
|
141
|
+
True,
|
|
142
|
+
)
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
async def stream_to_file_async(response, file, encoding, compression_algorithm):
|
|
146
|
+
target = _open_stream_target(file, encoding)
|
|
147
|
+
|
|
148
|
+
await _stream_bytes_to_target_async(
|
|
149
|
+
response.aiter_bytes(),
|
|
150
|
+
target,
|
|
151
|
+
encoding,
|
|
152
|
+
compression_algorithm,
|
|
153
|
+
True,
|
|
154
|
+
)
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
python_amazon_sp_api-1.9.60.data/scripts/make_endpoint,sha256=QWcwG6z4RWFJlzj4-xyHJymjObyKtwkvWFRq8T18iG0,8568
|
|
2
|
-
python_amazon_sp_api-1.9.60.dist-info/licenses/LICENSE,sha256=nbzomPIVo1PVl5bpGAntofsYAF7ZQ2UhzOtKgf7IiNw,1071
|
|
3
|
-
sp_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
sp_api/__version__.py,sha256=YKZIYQLqofVnXFP7X7xeDR_VVoSTptQH0t9lUzQL7fA,23
|
|
5
|
-
sp_api/api/__init__.py,sha256=QTDz2g_fryNGkGszhytqhI8K3x_ttP7fbXLJ5uRvmj0,4747
|
|
6
|
-
sp_api/api/amazon_warehousing_and_distribu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
sp_api/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py,sha256=bMBIxIj0eu6Gi6WY3XLdHHYDzNCwz0-9X59Jo9DoqfE,5863
|
|
8
|
-
sp_api/api/aplus_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
sp_api/api/aplus_content/aplus_content.py,sha256=ugQd0ZbzK28JL7qCliufqqrnStqRlsR417vhO7eaTjs,18532
|
|
10
|
-
sp_api/api/application_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
sp_api/api/application_integrations/application_integrations.py,sha256=yfxCp4J_1Rs-F00QJ3_a43AZfTikZfFbTCEPsnSqqqQ,6478
|
|
12
|
-
sp_api/api/application_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
sp_api/api/application_management/application_management.py,sha256=nQ2PLHnvmjciOXnbQLodd32i8rISi_bDlHikuRzFMuc,1881
|
|
14
|
-
sp_api/api/authorization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
sp_api/api/authorization/authorization.py,sha256=G4bHrtfaCmkIkVONK5dfiXzTnTeLacxImQOitOK3Iu0,2798
|
|
16
|
-
sp_api/api/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
sp_api/api/catalog/catalog.py,sha256=sDykeEaSmZZHwQ-6aYJvc9xDZqBGs9FlnUvKveE5ZCY,3956
|
|
18
|
-
sp_api/api/catalog_items/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
sp_api/api/catalog_items/catalog_items.py,sha256=TtPMh-75lL6HIPwxesEP1i8RGjmCuAPWdUptKdth_sU,4817
|
|
20
|
-
sp_api/api/customer_feedback/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
sp_api/api/customer_feedback/customer_feedback.py,sha256=3QJOu7-nHTdHWGricL6hnmX0qKcmqmoVsBLIpo1IJv4,3559
|
|
22
|
-
sp_api/api/data_kiosk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
sp_api/api/data_kiosk/data_kiosk.py,sha256=OyLyXtpAmPhfeDUqU2O7ovZ5e7K_ZAEcfyv3INNecyc,12175
|
|
24
|
-
sp_api/api/easy_ship/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
sp_api/api/easy_ship/easy_ship.py,sha256=ddYbTUVpnrvSiJBZYcdPAMYUMi6QBPMmUig-KY7ylD8,10996
|
|
26
|
-
sp_api/api/external_fulfillment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
sp_api/api/external_fulfillment/external_fulfillment.py,sha256=6mXwCzcWhzMZmUK_ViG0jadXsB4Vpt3E9SdG-QMa4g4,28671
|
|
28
|
-
sp_api/api/fba_inbound_eligibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
sp_api/api/fba_inbound_eligibility/fba_inbound_eligibility.py,sha256=rwzr7OF69b9OuNiq8wd2yL62_aGKgP8dAhkibUSjFcA,4425
|
|
30
|
-
sp_api/api/fba_small_and_light/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
sp_api/api/fba_small_and_light/fba_small_and_light.py,sha256=L959fSutNR5fNE6CGG7Fi44FLPgMixOM4u_vSfrh0b4,8416
|
|
32
|
-
sp_api/api/feeds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
sp_api/api/feeds/feeds.py,sha256=OddV53D7jxcsxYV7r_345qYrcXxRIlKpGfvh18AlKFo,10141
|
|
34
|
-
sp_api/api/finances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
sp_api/api/finances/finances.py,sha256=FW4B3uPfZC8ak6-CraMC59AZp3vPw83eUSvT9KeNEgA,2661
|
|
36
|
-
sp_api/api/fulfillment_inbound/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
sp_api/api/fulfillment_inbound/fulfillment_inbound.py,sha256=6KKayjoCQmw33gXK1jY1yuJje_g-P8ZjdX-AuLalyqY,86437
|
|
38
|
-
sp_api/api/fulfillment_outbound/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
sp_api/api/fulfillment_outbound/fulfillment_outbound.py,sha256=2XW8ZSJPzWTi3Pn6ewV6L_e_mi8UtJq0xiUIZXeUeQw,28789
|
|
40
|
-
sp_api/api/inventories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
sp_api/api/inventories/inventories.py,sha256=g5MRzjC9oAerND_b8NsWP7wBN0-R1G4qeVRtRT9jSEw,4217
|
|
42
|
-
sp_api/api/listings_items/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
sp_api/api/listings_items/listings_items.py,sha256=-6wsb0FTKq0PfVN0lUlS2OIu-YZq4sXzzixiugdPyH0,11749
|
|
44
|
-
sp_api/api/listings_restrictions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
-
sp_api/api/listings_restrictions/listings_restrictions.py,sha256=6ByAcUJuGfsr3Ww71DtraNUxejMFChjYcnBL9Hg7BwM,1710
|
|
46
|
-
sp_api/api/merchant_fulfillment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
-
sp_api/api/merchant_fulfillment/merchant_fulfillment.py,sha256=AXAhRBhOlcNtdgZk8butZvaSXD4OJ37RsX94EtIDYB8,15363
|
|
48
|
-
sp_api/api/messaging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
sp_api/api/messaging/messaging.py,sha256=pb_LWzBiE6RRVR6NTT6AW0uoBsiPMaoE7TJ-ugeLnlE,18759
|
|
50
|
-
sp_api/api/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
sp_api/api/notifications/notifications.py,sha256=VbMQcRHlrLuZqx252kDR9n0zX2FVcEUOO0rW-1QJ3Oc,10937
|
|
52
|
-
sp_api/api/orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
-
sp_api/api/orders/orders.py,sha256=KgFslDL5lK6LyuhaBufkekNlrz8fR9O11apfPpnLVL8,12908
|
|
54
|
-
sp_api/api/product_fees/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
sp_api/api/product_fees/product_fees.py,sha256=M40hXGYUG1gs8FxH_EZUQPaihva-p7hyyzRCROqVghw,7784
|
|
56
|
-
sp_api/api/product_type_definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
sp_api/api/product_type_definitions/product_type_definitions.py,sha256=sbQ4IurgxcXSJUTooX4KA8yu9e3EC0qq7Ax15T8lxcM,4472
|
|
58
|
-
sp_api/api/products/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
sp_api/api/products/products.py,sha256=su6ZidqCNqTpUncZv5ZMsKRD_MbsVZvI6qQ5XpJ1Q90,16353
|
|
60
|
-
sp_api/api/products/products_definitions.py,sha256=TVO1L-vjyzSmL54Xfa0m3K6rVUFaTNsYBjeGnLpscDI,5061
|
|
61
|
-
sp_api/api/replenishment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
sp_api/api/replenishment/replenishment.py,sha256=ehaeQSClepIk3jp7vaHwgVrWljryk-C0WIFKcweeb_8,7506
|
|
63
|
-
sp_api/api/reports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
sp_api/api/reports/reports.py,sha256=DZbwjvSppY0wg-b1kyPCmshI1Kuucpy1iL6hifo_wcw,19761
|
|
65
|
-
sp_api/api/sales/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
-
sp_api/api/sales/sales.py,sha256=tqV7FzvEU5QSz6OVc2wXog4Y2WPJaRoIDwca8aYmhh8,5763
|
|
67
|
-
sp_api/api/sellers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
-
sp_api/api/sellers/sellers.py,sha256=_tKEkBxZfeUxAAsHJIztq0PVADXg0s6Av3eatnsxtLQ,2275
|
|
69
|
-
sp_api/api/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
-
sp_api/api/services/services.py,sha256=09cJucV0zQsC8lRuQ5kJyG51t9ZkJ3HSYweKc1PoiG0,9242
|
|
71
|
-
sp_api/api/shipping/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
-
sp_api/api/shipping/shipping.py,sha256=xIjmu9LqGvnsSD7dGuFH7KY0VykHV3vfyvvX27aoLew,14531
|
|
73
|
-
sp_api/api/shipping/shippingV2.py,sha256=EMxAo0R1WqlyPBUzdc4fZpn4Oy2X4YJlwbkKdI7vmj0,25015
|
|
74
|
-
sp_api/api/solicitations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
-
sp_api/api/solicitations/solicitations.py,sha256=gTPST51WtEhcSIUF-DTsFy2Ag8DBglwWI1Q2GFP9BIU,3934
|
|
76
|
-
sp_api/api/supply_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
sp_api/api/supply_sources/supply_sources.py,sha256=UpWpuyZac5of-hZ0WKjn9V4kIrFcNM-3MGmXjqjRj60,4544
|
|
78
|
-
sp_api/api/tokens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
sp_api/api/tokens/tokens.py,sha256=UMuK3yBpXX0u5wUIEYJuOD7aH410gXy8pmFvBUMiK6M,3368
|
|
80
|
-
sp_api/api/upload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
-
sp_api/api/upload/upload.py,sha256=fp-so8uvqMs1cKuR6C54dDijfCjPr0ozMa9hrUBmDkc,652
|
|
82
|
-
sp_api/api/vendor_direct_fulfillment_inventory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
-
sp_api/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py,sha256=jVWIVsFhF4_h08kdZGObb011gKJSJSB4m1qcymrr0DY,2359
|
|
84
|
-
sp_api/api/vendor_direct_fulfillment_orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
sp_api/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py,sha256=Z28k0zBEbHA-NhzKkx7W_4NRy1IgJWb0C2ngUCGevpU,9454
|
|
86
|
-
sp_api/api/vendor_direct_fulfillment_payments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
sp_api/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py,sha256=OOMl4ddojBdyWVSPlQ4fmo0wH4cQ5_uJ_XkPD6_5WF4,10134
|
|
88
|
-
sp_api/api/vendor_direct_fulfillment_shipping/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
-
sp_api/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py,sha256=PmmhA9QDd5r_QXkbH3POTGR7MDckgGqY2F26lpgxWpI,28808
|
|
90
|
-
sp_api/api/vendor_direct_fulfillment_transactions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
sp_api/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py,sha256=hxpiZfJYslQhZF8ak-zKxH2_91Dwef6l3APYNa1T1oQ,1726
|
|
92
|
-
sp_api/api/vendor_invoices/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
-
sp_api/api/vendor_invoices/vendor_invoices.py,sha256=wFT5rwXVTxx9rZg1tQJALn6HKEyY34easU25KWq4Ois,11261
|
|
94
|
-
sp_api/api/vendor_orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
sp_api/api/vendor_orders/vendor_orders.py,sha256=cA9QQjiwdlNEL0z8syuDovpahb2AAs6H9EGT2fyhbGw,13364
|
|
96
|
-
sp_api/api/vendor_shipments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
-
sp_api/api/vendor_shipments/vendor_shipments.py,sha256=EFzVetejcR3RLzH9iOMN_JFFXaIhPXi3cJ_4rNQf1JM,8678
|
|
98
|
-
sp_api/api/vendor_transaction_status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
-
sp_api/api/vendor_transaction_status/vendor_transaction_status.py,sha256=hHDA4NSaLxuNUBWNpV5_MfPgRSEm3t0A7Yl9MY6pULc,1690
|
|
100
|
-
sp_api/auth/__init__.py,sha256=gb6opFLhOc3wL3lt7iS879P_ljflMepaFYEkqdlD_GQ,229
|
|
101
|
-
sp_api/auth/access_token_client.py,sha256=Ghlpql5TM57g2r6-V9Ium4elASryFIYgNlqtG47VAvQ,4713
|
|
102
|
-
sp_api/auth/access_token_response.py,sha256=_0UUopFHGNWHFwyeerCYWEDI61FRysDfSRb5JefCEuw,275
|
|
103
|
-
sp_api/auth/credentials.py,sha256=OndGKpAOupU6F6CmvOYNlK7uqgXia4DdHhW-u3IRKCk,262
|
|
104
|
-
sp_api/auth/exceptions.py,sha256=JCY74CZbxqSQ09huA1r_Z5kuD1k0O_sjD7sHhJI0aIk,424
|
|
105
|
-
sp_api/base/ApiResponse.py,sha256=jcxfWXYVb8LZKokQF_R-ZvVhBSFcE8tyJufUh5i6Jcc,2287
|
|
106
|
-
sp_api/base/InventoryEnums.py,sha256=IQJ9AhcKpXadO4qP5i76kzHfP2EWQ-KTaZdR6MoOFjI,95
|
|
107
|
-
sp_api/base/__init__.py,sha256=IaBNIYLWsgvCKAfbMXLVPZdo2Wkw5ZdUhH8vxFfj0wc,2617
|
|
108
|
-
sp_api/base/base_client.py,sha256=uQEIgDexDlUPCTFuZucEsIxktBlZDmsSw4LUvNrVPxo,223
|
|
109
|
-
sp_api/base/client.py,sha256=7C_0_TXGt8Ml91FAawxrCIRqH7F3VGw7NVvBesLpe-M,7601
|
|
110
|
-
sp_api/base/credential_provider.py,sha256=PbhHsVXGw0abdmHNSk5UiEy3cn5cf7AQttnelSYOofY,5972
|
|
111
|
-
sp_api/base/exceptions.py,sha256=gniV45duxHdD_TWsN9023SObVpPLwMtBzkXlKQrWvYo,4001
|
|
112
|
-
sp_api/base/feedTypes.py,sha256=9iI64uXULqUbVLVANftzltFmpFRgtgSDsARTMQ28jvo,2479
|
|
113
|
-
sp_api/base/fulfillment_channel.py,sha256=x-0DnVC1U_6GdeYViGQxM7Ree48HKBSXR2x8y33MuO4,93
|
|
114
|
-
sp_api/base/helpers.py,sha256=H38w9T_QWAyUzLsBAQWRhC5Q0CysdWuus1xrwp-ISqc,2518
|
|
115
|
-
sp_api/base/identifiersType.py,sha256=3jBIeSlXDaV7Ikc8k9p67m4T7rJYfkevdGW3ZOdAScQ,562
|
|
116
|
-
sp_api/base/included_data.py,sha256=WccyLjgeiUTApIu6UFOsn0-o_SjfnBF1r-3zj7EQ7Ag,2977
|
|
117
|
-
sp_api/base/inegibility_reasons.py,sha256=vyQ8buMNwXUeV2cp7kZxtzbBkflqaMxuND_LlUtY2hA,9349
|
|
118
|
-
sp_api/base/marketplaces.py,sha256=H96HaIrnpAVcFCJF9LYEA_U0nuSHhVw1v-exzVbmxnQ,4258
|
|
119
|
-
sp_api/base/notifications.py,sha256=yAajFMCPAYzuuc1VaVNp1Jt71M_KR1PiSoq92TvHwxE,5448
|
|
120
|
-
sp_api/base/processing_status.py,sha256=V6YVoAE1pO3vrusDz0Sahc-DqgJqeNDuIaJIduXuDb4,183
|
|
121
|
-
sp_api/base/reportTypes.py,sha256=26ZjqGlaSD6s3DDHlicvscuh6z7NBw9qQWSE5nVHhNQ,10395
|
|
122
|
-
sp_api/base/report_status.py,sha256=mHPPFvK2xpfucCl6Vk87BHFJO8FB1x0Ej-h3fQFOetE,179
|
|
123
|
-
sp_api/base/sales_enum.py,sha256=O08knipDvuPEBYPM3kYEofl7t6uGZ-nJrn0L9q3CX9w,395
|
|
124
|
-
sp_api/base/schedules.py,sha256=WX0tYSAK4kI-ceBqeE_cY2_MaKC2usEgV2FDqujioqI,433
|
|
125
|
-
sp_api/util/__init__.py,sha256=sqI3L1gYCvC-BwpVEBXEWHHWzijoJabEsN4UTCGswm8,298
|
|
126
|
-
sp_api/util/key_maker.py,sha256=T4I2rdBZzvWtX32qgrv9DA5EzVK3LEAWtbRffup-_kE,2172
|
|
127
|
-
sp_api/util/load_all_pages.py,sha256=K6Suml4_GWZ5L9-YcnhaM9q-dA7Xr6wNLE-kWP_8MPk,1839
|
|
128
|
-
sp_api/util/load_date_bound.py,sha256=j9gu9WucENqU9xaQ-xG7c4yK4RB-FXK39_r1mLT76z0,1726
|
|
129
|
-
sp_api/util/retry.py,sha256=V8SeSeX3Brdou138hNA5HeQkKlHppZcqbZobIDjmBYw,2407
|
|
130
|
-
python_amazon_sp_api-1.9.60.dist-info/METADATA,sha256=NFH_v0rRE39kCoZqZrp28AFn7PPdR7GinRjXlU5NBXM,6801
|
|
131
|
-
python_amazon_sp_api-1.9.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
132
|
-
python_amazon_sp_api-1.9.60.dist-info/top_level.txt,sha256=mEzPMFyyy0LmJGY4KFXfh5usUka4eeouIr7-2IAzoE0,7
|
|
133
|
-
python_amazon_sp_api-1.9.60.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{python_amazon_sp_api-1.9.60.dist-info → python_amazon_sp_api-2.0.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{python_amazon_sp_api-1.9.60.dist-info → python_amazon_sp_api-2.0.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|