vtexpy 0.0.0b27__py3-none-any.whl → 0.0.0b29__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.
- vtex/_api/base.py +35 -6
- vtex/_api/orders.py +8 -1
- vtex/_api/payments_gateway.py +2 -1
- {vtexpy-0.0.0b27.dist-info → vtexpy-0.0.0b29.dist-info}/METADATA +1 -1
- {vtexpy-0.0.0b27.dist-info → vtexpy-0.0.0b29.dist-info}/RECORD +7 -7
- {vtexpy-0.0.0b27.dist-info → vtexpy-0.0.0b29.dist-info}/LICENSE +0 -0
- {vtexpy-0.0.0b27.dist-info → vtexpy-0.0.0b29.dist-info}/WHEEL +0 -0
vtex/_api/base.py
CHANGED
|
@@ -62,6 +62,7 @@ class BaseAPI:
|
|
|
62
62
|
files: Union[RequestFiles, None] = None,
|
|
63
63
|
config: Union[VTEXConfig, None] = None,
|
|
64
64
|
rate_limit: Union[RateLimitItem, None] = None,
|
|
65
|
+
rate_limit_key: Union[str, None] = None,
|
|
65
66
|
response_class: Union[Type[VTEXResponseType], None] = None,
|
|
66
67
|
**kwargs: Any,
|
|
67
68
|
) -> VTEXResponseType:
|
|
@@ -87,7 +88,9 @@ class BaseAPI:
|
|
|
87
88
|
|
|
88
89
|
rate_limiter = (
|
|
89
90
|
None
|
|
90
|
-
if not (
|
|
91
|
+
if not (
|
|
92
|
+
rate_limit and rate_limit_key and request_config.rate_limit_storage_url
|
|
93
|
+
)
|
|
91
94
|
else strategies.MovingWindowRateLimiter(
|
|
92
95
|
storage.storage_from_string(request_config.rate_limit_storage_url),
|
|
93
96
|
)
|
|
@@ -120,15 +123,29 @@ class BaseAPI:
|
|
|
120
123
|
with Client(timeout=request_config.timeout) as client:
|
|
121
124
|
with disable_loggers(["httpcore", "httpx"]):
|
|
122
125
|
while (
|
|
123
|
-
|
|
124
|
-
and
|
|
126
|
+
rate_limit
|
|
127
|
+
and rate_limit_key
|
|
128
|
+
and rate_limiter
|
|
125
129
|
and not rate_limiter.test(
|
|
126
130
|
rate_limit,
|
|
127
131
|
request_config.account_name,
|
|
128
|
-
|
|
132
|
+
rate_limit_key,
|
|
129
133
|
)
|
|
130
134
|
):
|
|
131
135
|
sleep(1)
|
|
136
|
+
self.logger.info(
|
|
137
|
+
f"{rate_limiter} limited {request_config.account_name} on "
|
|
138
|
+
f"{rate_limit_key}",
|
|
139
|
+
extra={
|
|
140
|
+
"account_name": request_config.account_name,
|
|
141
|
+
"rate_limit_key": rate_limit_key,
|
|
142
|
+
"remaining": rate_limiter.get_window_stats(
|
|
143
|
+
rate_limit,
|
|
144
|
+
request_config.account_name,
|
|
145
|
+
rate_limit_key,
|
|
146
|
+
).remaining,
|
|
147
|
+
},
|
|
148
|
+
)
|
|
132
149
|
|
|
133
150
|
try:
|
|
134
151
|
response = client.request(
|
|
@@ -143,11 +160,23 @@ class BaseAPI:
|
|
|
143
160
|
files=files,
|
|
144
161
|
)
|
|
145
162
|
finally:
|
|
146
|
-
if
|
|
163
|
+
if rate_limit and rate_limit_key and rate_limiter:
|
|
147
164
|
rate_limiter.hit(
|
|
148
165
|
rate_limit,
|
|
149
166
|
request_config.account_name,
|
|
150
|
-
|
|
167
|
+
rate_limit_key,
|
|
168
|
+
)
|
|
169
|
+
self.logger.info(
|
|
170
|
+
"Rate limit updated!",
|
|
171
|
+
extra={
|
|
172
|
+
"account_name": request_config.account_name,
|
|
173
|
+
"rate_limit_key": rate_limit_key,
|
|
174
|
+
"remaining": rate_limiter.get_window_stats(
|
|
175
|
+
rate_limit,
|
|
176
|
+
request_config.account_name,
|
|
177
|
+
rate_limit_key,
|
|
178
|
+
).remaining,
|
|
179
|
+
},
|
|
151
180
|
)
|
|
152
181
|
|
|
153
182
|
response.request.headers = Headers(
|
vtex/_api/orders.py
CHANGED
|
@@ -88,7 +88,8 @@ class OrdersAPI(BaseAPI):
|
|
|
88
88
|
environment=self.ENVIRONMENT,
|
|
89
89
|
params=params,
|
|
90
90
|
config=self.client.config.with_overrides(**kwargs),
|
|
91
|
-
rate_limit=parse("
|
|
91
|
+
rate_limit=parse("4500 per minute"),
|
|
92
|
+
rate_limit_key="orders",
|
|
92
93
|
response_class=VTEXPaginatedItemsResponse[Any, Any],
|
|
93
94
|
)
|
|
94
95
|
|
|
@@ -104,6 +105,8 @@ class OrdersAPI(BaseAPI):
|
|
|
104
105
|
endpoint=f"/api/oms/pvt/orders/{order_id}",
|
|
105
106
|
environment=self.ENVIRONMENT,
|
|
106
107
|
config=self.client.config.with_overrides(**kwargs),
|
|
108
|
+
rate_limit=parse("4500 per minute"),
|
|
109
|
+
rate_limit_key="orders",
|
|
107
110
|
response_class=VTEXDataResponse[Any],
|
|
108
111
|
)
|
|
109
112
|
|
|
@@ -123,6 +126,8 @@ class OrdersAPI(BaseAPI):
|
|
|
123
126
|
),
|
|
124
127
|
},
|
|
125
128
|
config=self.client.config.with_overrides(**kwargs),
|
|
129
|
+
rate_limit=parse("4500 per minute"),
|
|
130
|
+
rate_limit_key="orders",
|
|
126
131
|
response_class=VTEXItemsResponse[Any, Any],
|
|
127
132
|
)
|
|
128
133
|
|
|
@@ -147,5 +152,7 @@ class OrdersAPI(BaseAPI):
|
|
|
147
152
|
environment=self.ENVIRONMENT,
|
|
148
153
|
json={"handles": handles},
|
|
149
154
|
config=self.client.config.with_overrides(**kwargs),
|
|
155
|
+
rate_limit=parse("4500 per minute"),
|
|
156
|
+
rate_limit_key="orders",
|
|
150
157
|
response_class=VTEXDataResponse[Any],
|
|
151
158
|
)
|
vtex/_api/payments_gateway.py
CHANGED
|
@@ -37,7 +37,8 @@ class PaymentsGatewayAPI(BaseAPI):
|
|
|
37
37
|
endpoint=f"/api/pvt/transactions/{transaction_id}/interactions",
|
|
38
38
|
environment=self.ENVIRONMENT,
|
|
39
39
|
config=self.client.config.with_overrides(**kwargs),
|
|
40
|
-
rate_limit=parse("
|
|
40
|
+
rate_limit=parse("3500 per minute"),
|
|
41
|
+
rate_limit_key="list_transaction_interactions",
|
|
41
42
|
response_class=VTEXItemsResponse[Any, Any],
|
|
42
43
|
)
|
|
43
44
|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
vtex/__init__.py,sha256=SLnqpZa19ISSQ9LDaCVLDAj-OxFlgVkQyEknydu20VU,636
|
|
2
2
|
vtex/_api/__init__.py,sha256=2OarRhTDq1Oj65v7WkMr3Bi7EAnQMPm2Ypgv9flzE6c,385
|
|
3
|
-
vtex/_api/base.py,sha256=
|
|
3
|
+
vtex/_api/base.py,sha256=pcww1e_HxgoY1Zles9j3sPBzGiniAdBQ5aeZtygM-dc,9761
|
|
4
4
|
vtex/_api/catalog.py,sha256=UaVWI9Vhhu6wHejO851hVSDmcLUDtfwcnsGasZGEKiw,4661
|
|
5
5
|
vtex/_api/checkout.py,sha256=ViFJq2GZRAA6yyjaFC3rz0oMYKxzBIsi8tzGKCWRxQ0,1693
|
|
6
6
|
vtex/_api/custom.py,sha256=3yIwTj1Ikf30oq0GzdNz0P9APYxjBeoRvdlbh0rT9gs,2930
|
|
7
7
|
vtex/_api/license_manager.py,sha256=GAdRpizeGUFem-up-SYNzehs5uBY0elTElJ9bEQUlFo,2805
|
|
8
8
|
vtex/_api/logistics.py,sha256=bd55wipbnql3OFnDCBsjP0-jp7OY6FP10Yz5acOsG2o,5052
|
|
9
9
|
vtex/_api/master_data.py,sha256=HGoWr908iQYb0kzq_KNvKyWKtaNQ9vTv7CXxvKey0AM,2046
|
|
10
|
-
vtex/_api/orders.py,sha256=
|
|
11
|
-
vtex/_api/payments_gateway.py,sha256=
|
|
10
|
+
vtex/_api/orders.py,sha256=XnuPymizSeI-xWigo8B2odBBIIzwGFvDlbMAR6FHjz4,5506
|
|
11
|
+
vtex/_api/payments_gateway.py,sha256=O55F2O8jb1hOZrYqp2DhZzmlex5leYmeHzV1FlKlqTc,3939
|
|
12
12
|
vtex/_api/pricing.py,sha256=gZX9MmUKsj0iPjJKT2-Ko9dzT6rZR_DR4ruqs1c9IdY,535
|
|
13
13
|
vtex/_api/promotions_and_taxes.py,sha256=wtNxTrc36u10AMbOq2NMtOVp1HLzrBWxqJDmBYpdXXY,1893
|
|
14
14
|
vtex/_api/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -25,7 +25,7 @@ vtex/_types.py,sha256=xrqHzmrc0IhE5fc1aGf0StCm3BQbVFyk3LG4Hd7Wd2Q,631
|
|
|
25
25
|
vtex/_utils.py,sha256=ngC2rRdhBO5cjAAByS0_2LMeXKsI6rnfiHGP96U0m88,3215
|
|
26
26
|
vtex/_vtex.py,sha256=IBPVQ__xiQGJEoht4oCnd-pAYKNJDrKoU06yieQL84o,2342
|
|
27
27
|
vtex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
vtexpy-0.0.
|
|
29
|
-
vtexpy-0.0.
|
|
30
|
-
vtexpy-0.0.
|
|
31
|
-
vtexpy-0.0.
|
|
28
|
+
vtexpy-0.0.0b29.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
29
|
+
vtexpy-0.0.0b29.dist-info/METADATA,sha256=tGmyIAFSIE5oyXpwynGsA-v6Jchfd-nj_18MucfLy7Q,3528
|
|
30
|
+
vtexpy-0.0.0b29.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
31
|
+
vtexpy-0.0.0b29.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|