never-primp 1.2.0__cp38-abi3-macosx_11_0_arm64.whl → 1.2.1__cp38-abi3-macosx_11_0_arm64.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.
Potentially problematic release.
This version of never-primp might be problematic. Click here for more details.
- never_primp/never_primp.abi3.so +0 -0
- never_primp/never_primp.pyi +42 -1
- {never_primp-1.2.0.dist-info → never_primp-1.2.1.dist-info}/METADATA +1 -1
- never_primp-1.2.1.dist-info/RECORD +8 -0
- never_primp-1.2.0.dist-info/RECORD +0 -8
- {never_primp-1.2.0.dist-info → never_primp-1.2.1.dist-info}/WHEEL +0 -0
- {never_primp-1.2.0.dist-info → never_primp-1.2.1.dist-info}/licenses/LICENSE +0 -0
never_primp/never_primp.abi3.so
CHANGED
|
Binary file
|
never_primp/never_primp.pyi
CHANGED
|
@@ -45,11 +45,12 @@ class RequestParams(TypedDict, total=False):
|
|
|
45
45
|
data: dict[str, Any] | None
|
|
46
46
|
json: Any | None
|
|
47
47
|
files: dict[str, str] | None
|
|
48
|
+
proxy: str | None
|
|
49
|
+
verify: bool | None
|
|
48
50
|
|
|
49
51
|
class ClientRequestParams(RequestParams):
|
|
50
52
|
impersonate: IMPERSONATE | None
|
|
51
53
|
impersonate_os: IMPERSONATE_OS | None
|
|
52
|
-
verify: bool | None
|
|
53
54
|
ca_cert_file: str | None
|
|
54
55
|
|
|
55
56
|
class Response:
|
|
@@ -191,6 +192,8 @@ class RClient:
|
|
|
191
192
|
data: dict[str, Any] | None = None,
|
|
192
193
|
json: Any | None = None,
|
|
193
194
|
files: dict[str, str] | None = None,
|
|
195
|
+
proxy: str | None = None,
|
|
196
|
+
verify: bool | None = None,
|
|
194
197
|
) -> Response: ...
|
|
195
198
|
def get(
|
|
196
199
|
self,
|
|
@@ -202,6 +205,8 @@ class RClient:
|
|
|
202
205
|
auth: tuple[str, str | None] | None = None,
|
|
203
206
|
auth_bearer: str | None = None,
|
|
204
207
|
timeout: float | None = None,
|
|
208
|
+
proxy: str | None = None,
|
|
209
|
+
verify: bool | None = None,
|
|
205
210
|
) -> Response: ...
|
|
206
211
|
def head(
|
|
207
212
|
self,
|
|
@@ -213,6 +218,8 @@ class RClient:
|
|
|
213
218
|
auth: tuple[str, str | None] | None = None,
|
|
214
219
|
auth_bearer: str | None = None,
|
|
215
220
|
timeout: float | None = None,
|
|
221
|
+
proxy: str | None = None,
|
|
222
|
+
verify: bool | None = None,
|
|
216
223
|
) -> Response: ...
|
|
217
224
|
def options(
|
|
218
225
|
self,
|
|
@@ -224,6 +231,8 @@ class RClient:
|
|
|
224
231
|
auth: tuple[str, str | None] | None = None,
|
|
225
232
|
auth_bearer: str | None = None,
|
|
226
233
|
timeout: float | None = None,
|
|
234
|
+
proxy: str | None = None,
|
|
235
|
+
verify: bool | None = None,
|
|
227
236
|
) -> Response: ...
|
|
228
237
|
def delete(
|
|
229
238
|
self,
|
|
@@ -238,6 +247,8 @@ class RClient:
|
|
|
238
247
|
content: bytes | None = None,
|
|
239
248
|
data: dict[str, Any] | None = None,
|
|
240
249
|
json: Any | None = None,
|
|
250
|
+
proxy: str | None = None,
|
|
251
|
+
verify: bool | None = None,
|
|
241
252
|
) -> Response: ...
|
|
242
253
|
def post(
|
|
243
254
|
self,
|
|
@@ -253,6 +264,8 @@ class RClient:
|
|
|
253
264
|
data: dict[str, Any] | None = None,
|
|
254
265
|
json: Any | None = None,
|
|
255
266
|
files: dict[str, str] | None = None,
|
|
267
|
+
proxy: str | None = None,
|
|
268
|
+
verify: bool | None = None,
|
|
256
269
|
) -> Response: ...
|
|
257
270
|
def put(
|
|
258
271
|
self,
|
|
@@ -268,6 +281,8 @@ class RClient:
|
|
|
268
281
|
data: dict[str, Any] | None = None,
|
|
269
282
|
json: Any | None = None,
|
|
270
283
|
files: dict[str, str] | None = None,
|
|
284
|
+
proxy: str | None = None,
|
|
285
|
+
verify: bool | None = None,
|
|
271
286
|
) -> Response: ...
|
|
272
287
|
def patch(
|
|
273
288
|
self,
|
|
@@ -283,6 +298,8 @@ class RClient:
|
|
|
283
298
|
data: dict[str, Any] | None = None,
|
|
284
299
|
json: Any | None = None,
|
|
285
300
|
files: dict[str, str] | None = None,
|
|
301
|
+
proxy: str | None = None,
|
|
302
|
+
verify: bool | None = None,
|
|
286
303
|
) -> Response: ...
|
|
287
304
|
|
|
288
305
|
class Client(RClient):
|
|
@@ -313,6 +330,8 @@ class AsyncClient(Client):
|
|
|
313
330
|
data: dict[str, Any] | None = None,
|
|
314
331
|
json: Any | None = None,
|
|
315
332
|
files: dict[str, str] | None = None,
|
|
333
|
+
proxy: str | None = None,
|
|
334
|
+
verify: bool | None = None,
|
|
316
335
|
) -> Response: ...
|
|
317
336
|
async def get(
|
|
318
337
|
self,
|
|
@@ -324,6 +343,8 @@ class AsyncClient(Client):
|
|
|
324
343
|
auth: tuple[str, str | None] | None = None,
|
|
325
344
|
auth_bearer: str | None = None,
|
|
326
345
|
timeout: float | None = None,
|
|
346
|
+
proxy: str | None = None,
|
|
347
|
+
verify: bool | None = None,
|
|
327
348
|
) -> Response: ...
|
|
328
349
|
async def head(
|
|
329
350
|
self,
|
|
@@ -335,6 +356,8 @@ class AsyncClient(Client):
|
|
|
335
356
|
auth: tuple[str, str | None] | None = None,
|
|
336
357
|
auth_bearer: str | None = None,
|
|
337
358
|
timeout: float | None = None,
|
|
359
|
+
proxy: str | None = None,
|
|
360
|
+
verify: bool | None = None,
|
|
338
361
|
) -> Response: ...
|
|
339
362
|
async def options(
|
|
340
363
|
self,
|
|
@@ -346,6 +369,8 @@ class AsyncClient(Client):
|
|
|
346
369
|
auth: tuple[str, str | None] | None = None,
|
|
347
370
|
auth_bearer: str | None = None,
|
|
348
371
|
timeout: float | None = None,
|
|
372
|
+
proxy: str | None = None,
|
|
373
|
+
verify: bool | None = None,
|
|
349
374
|
) -> Response: ...
|
|
350
375
|
async def delete(
|
|
351
376
|
self,
|
|
@@ -360,6 +385,8 @@ class AsyncClient(Client):
|
|
|
360
385
|
content: bytes | None = None,
|
|
361
386
|
data: dict[str, Any] | None = None,
|
|
362
387
|
json: Any | None = None,
|
|
388
|
+
proxy: str | None = None,
|
|
389
|
+
verify: bool | None = None,
|
|
363
390
|
) -> Response: ...
|
|
364
391
|
async def post(
|
|
365
392
|
self,
|
|
@@ -375,6 +402,8 @@ class AsyncClient(Client):
|
|
|
375
402
|
data: dict[str, Any] | None = None,
|
|
376
403
|
json: Any | None = None,
|
|
377
404
|
files: dict[str, str] | None = None,
|
|
405
|
+
proxy: str | None = None,
|
|
406
|
+
verify: bool | None = None,
|
|
378
407
|
) -> Response: ...
|
|
379
408
|
async def put(
|
|
380
409
|
self,
|
|
@@ -390,6 +419,8 @@ class AsyncClient(Client):
|
|
|
390
419
|
data: dict[str, Any] | None = None,
|
|
391
420
|
json: Any | None = None,
|
|
392
421
|
files: dict[str, str] | None = None,
|
|
422
|
+
proxy: str | None = None,
|
|
423
|
+
verify: bool | None = None,
|
|
393
424
|
) -> Response: ...
|
|
394
425
|
async def patch(
|
|
395
426
|
self,
|
|
@@ -405,6 +436,8 @@ class AsyncClient(Client):
|
|
|
405
436
|
data: dict[str, Any] | None = None,
|
|
406
437
|
json: Any | None = None,
|
|
407
438
|
files: dict[str, str] | None = None,
|
|
439
|
+
proxy: str | None = None,
|
|
440
|
+
verify: bool | None = None,
|
|
408
441
|
) -> Response: ...
|
|
409
442
|
|
|
410
443
|
# Module-level convenience functions with explicit parameters
|
|
@@ -424,6 +457,7 @@ def request(
|
|
|
424
457
|
files: dict[str, str] | None = None,
|
|
425
458
|
impersonate: IMPERSONATE | None = None,
|
|
426
459
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
460
|
+
proxy: str | None = None,
|
|
427
461
|
verify: bool | None = True,
|
|
428
462
|
ca_cert_file: str | None = None,
|
|
429
463
|
) -> Response: ...
|
|
@@ -439,6 +473,7 @@ def get(
|
|
|
439
473
|
timeout: float | None = None,
|
|
440
474
|
impersonate: IMPERSONATE | None = None,
|
|
441
475
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
476
|
+
proxy: str | None = None,
|
|
442
477
|
verify: bool | None = True,
|
|
443
478
|
ca_cert_file: str | None = None,
|
|
444
479
|
) -> Response: ...
|
|
@@ -454,6 +489,7 @@ def head(
|
|
|
454
489
|
timeout: float | None = None,
|
|
455
490
|
impersonate: IMPERSONATE | None = None,
|
|
456
491
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
492
|
+
proxy: str | None = None,
|
|
457
493
|
verify: bool | None = True,
|
|
458
494
|
ca_cert_file: str | None = None,
|
|
459
495
|
) -> Response: ...
|
|
@@ -469,6 +505,7 @@ def options(
|
|
|
469
505
|
timeout: float | None = None,
|
|
470
506
|
impersonate: IMPERSONATE | None = None,
|
|
471
507
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
508
|
+
proxy: str | None = None,
|
|
472
509
|
verify: bool | None = True,
|
|
473
510
|
ca_cert_file: str | None = None,
|
|
474
511
|
) -> Response: ...
|
|
@@ -487,6 +524,7 @@ def delete(
|
|
|
487
524
|
json: Any | None = None,
|
|
488
525
|
impersonate: IMPERSONATE | None = None,
|
|
489
526
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
527
|
+
proxy: str | None = None,
|
|
490
528
|
verify: bool | None = True,
|
|
491
529
|
ca_cert_file: str | None = None,
|
|
492
530
|
) -> Response: ...
|
|
@@ -506,6 +544,7 @@ def post(
|
|
|
506
544
|
files: dict[str, str] | None = None,
|
|
507
545
|
impersonate: IMPERSONATE | None = None,
|
|
508
546
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
547
|
+
proxy: str | None = None,
|
|
509
548
|
verify: bool | None = True,
|
|
510
549
|
ca_cert_file: str | None = None,
|
|
511
550
|
) -> Response: ...
|
|
@@ -525,6 +564,7 @@ def put(
|
|
|
525
564
|
files: dict[str, str] | None = None,
|
|
526
565
|
impersonate: IMPERSONATE | None = None,
|
|
527
566
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
567
|
+
proxy: str | None = None,
|
|
528
568
|
verify: bool | None = True,
|
|
529
569
|
ca_cert_file: str | None = None,
|
|
530
570
|
) -> Response: ...
|
|
@@ -544,6 +584,7 @@ def patch(
|
|
|
544
584
|
files: dict[str, str] | None = None,
|
|
545
585
|
impersonate: IMPERSONATE | None = None,
|
|
546
586
|
impersonate_os: IMPERSONATE_OS | None = None,
|
|
587
|
+
proxy: str | None = None,
|
|
547
588
|
verify: bool | None = True,
|
|
548
589
|
ca_cert_file: str | None = None,
|
|
549
590
|
) -> Response: ...
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
never_primp-1.2.1.dist-info/METADATA,sha256=H6hJPPTbVOnRUMAOkfKLUFvoUV3xbQZQCeHX6SgsONE,24342
|
|
2
|
+
never_primp-1.2.1.dist-info/WHEEL,sha256=gnJiauUA-C9eduukCSYPRAnEnckuUqP6yenZ8c1xV7c,102
|
|
3
|
+
never_primp-1.2.1.dist-info/licenses/LICENSE,sha256=ZPD9tCar0h91tI4v-TuZdrjDdLqzU4rzPTxtP3x--uc,1063
|
|
4
|
+
never_primp/__init__.py,sha256=xGWhmrh6Ff1fmDEY6YXV19xi-Uyx8Dmmff1VjXv-UHM,26261
|
|
5
|
+
never_primp/never_primp.abi3.so,sha256=G9LgwSWFsdJscxiGRcphTbEf97SgiIOAyZebQyCIjWg,6276288
|
|
6
|
+
never_primp/never_primp.pyi,sha256=GvPYkl-VgJxKg3vKFWO3aq2QmhmPyDMRB6xKHOxLmY8,20824
|
|
7
|
+
never_primp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
never_primp-1.2.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
never_primp-1.2.0.dist-info/METADATA,sha256=37r5VZ4GjUwMPja42ISYPJCwJ3SA1cZvPQsOkCzQYso,24342
|
|
2
|
-
never_primp-1.2.0.dist-info/WHEEL,sha256=gnJiauUA-C9eduukCSYPRAnEnckuUqP6yenZ8c1xV7c,102
|
|
3
|
-
never_primp-1.2.0.dist-info/licenses/LICENSE,sha256=ZPD9tCar0h91tI4v-TuZdrjDdLqzU4rzPTxtP3x--uc,1063
|
|
4
|
-
never_primp/__init__.py,sha256=xGWhmrh6Ff1fmDEY6YXV19xi-Uyx8Dmmff1VjXv-UHM,26261
|
|
5
|
-
never_primp/never_primp.abi3.so,sha256=EluK_NqhcewSFEWcfTt03nX-cp8kA_hZR5p8T-YW6rA,6408272
|
|
6
|
-
never_primp/never_primp.pyi,sha256=0-MozRXSsL7kUxsYXkaYoeyk6b0uwvNYvFPyD28fxhU,19442
|
|
7
|
-
never_primp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
never_primp-1.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|