-
Notifications
You must be signed in to change notification settings - Fork 0
/
pants.lock
2078 lines (2077 loc) · 100 KB
/
pants.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This lockfile was autogenerated by Pants. To regenerate, run:
//
// ./pants generate-lockfiles --resolve=python-default
//
// --- BEGIN PANTS LOCKFILE METADATA: DO NOT EDIT OR REMOVE ---
// {
// "version": 3,
// "valid_for_interpreter_constraints": [
// "CPython==3.10.*"
// ],
// "generated_with_requirements": [
// "prefect"
// ],
// "manylinux": "manylinux2014",
// "requirement_constraints": [],
// "only_binary": [],
// "no_binary": []
// }
// --- END PANTS LOCKFILE METADATA ---
{
"allow_builds": true,
"allow_prereleases": false,
"allow_wheels": true,
"build_isolation": true,
"constraints": [],
"locked_resolves": [
{
"locked_requirements": [
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6c49dc6d3405929b1d08eeccc72306d3677503cc5e5e43771efc1e00232e8231",
"url": "https://files.pythonhosted.org/packages/a0/48/77c0092f716c4bf9460dca44f5120f70b8f71f14a12f40d22551a7152719/aiosqlite-0.17.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "f0e6acc24bc4864149267ac82fb46dfb3be4455f99fe21df82609cc6e6baee51",
"url": "https://files.pythonhosted.org/packages/40/e0/ad1edd74311831ca71b32a5b83352b490d78d11a90a1cde04e1b6830e018/aiosqlite-0.17.0.tar.gz"
}
],
"project_name": "aiosqlite",
"requires_dists": [
"typing_extensions>=3.7.2"
],
"requires_python": ">=3.6",
"version": "0.17"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "0a024d7f2de88d738d7395ff866997314c837be6104e90c5724350313dee4da4",
"url": "https://files.pythonhosted.org/packages/b3/c8/69600a8138a56794713ecdb8b75b14fbe32a410bc444683f27dbab93c0ca/alembic-1.8.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "cd0b5e45b14b706426b833f06369b9a6d5ee03f826ec3238723ce8caaf6e5ffa",
"url": "https://files.pythonhosted.org/packages/37/ab/80e6d86ca81235ea1a7104089dddf74de4b45f8af0a05d4b265be44d6ff9/alembic-1.8.1.tar.gz"
}
],
"project_name": "alembic",
"requires_dists": [
"Mako",
"SQLAlchemy>=1.3.0",
"importlib-metadata; python_version < \"3.9\"",
"importlib-resources; python_version < \"3.9\"",
"python-dateutil; extra == \"tz\""
],
"requires_python": ">=3.7",
"version": "1.8.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "fbbe32bd270d2a2ef3ed1c5d45041250284e31fc0a4df4a5a6071842051a51e3",
"url": "https://files.pythonhosted.org/packages/77/2b/b4c0b7a3f3d61adb1a1e0b78f90a94e2b6162a043880704b7437ef297cad/anyio-3.6.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "25ea0d673ae30af41a0c442f81cf3b38c7e79fdc7b60335a4c14e05eb0947421",
"url": "https://files.pythonhosted.org/packages/8b/94/6928d4345f2bc1beecbff03325cad43d320717f51ab74ab5a571324f4f5a/anyio-3.6.2.tar.gz"
}
],
"project_name": "anyio",
"requires_dists": [
"contextlib2; python_version < \"3.7\" and extra == \"test\"",
"contextvars; python_version < \"3.7\"",
"coverage[toml]>=4.5; extra == \"test\"",
"dataclasses; python_version < \"3.7\"",
"hypothesis>=4.0; extra == \"test\"",
"idna>=2.8",
"mock>=4; python_version < \"3.8\" and extra == \"test\"",
"packaging; extra == \"doc\"",
"pytest-mock>=3.6.1; extra == \"test\"",
"pytest>=7.0; extra == \"test\"",
"sniffio>=1.1",
"sphinx-autodoc-typehints>=1.2.0; extra == \"doc\"",
"sphinx-rtd-theme; extra == \"doc\"",
"trio<0.22,>=0.16; extra == \"trio\"",
"trustme; extra == \"test\"",
"typing-extensions; python_version < \"3.8\"",
"uvloop<0.15; (python_version < \"3.7\" and (platform_python_implementation == \"CPython\" and platform_system != \"Windows\")) and extra == \"test\"",
"uvloop>=0.15; (python_version >= \"3.7\" and (platform_python_implementation == \"CPython\" and platform_system != \"Windows\")) and extra == \"test\""
],
"requires_python": ">=3.6.2",
"version": "3.6.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "9f7dd12e8cebeef7268c87b64f04a22c4a99ca3af17113af91985501e1a7d478",
"url": "https://files.pythonhosted.org/packages/f6/de/ba9969c0475140b64f324da8dbf2ec0baf86bbc89051a8e0c6075cb3c7f6/apprise-1.2.0-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "6e31afa18f47452eaccd56fb7ee83d92452c534d15f392407ed1a0e3c465244b",
"url": "https://files.pythonhosted.org/packages/e4/5f/ca234d05508701da3efdd239d173c4d05629d12ac67adfef8caa94e39526/apprise-1.2.0.tar.gz"
}
],
"project_name": "apprise",
"requires_dists": [
"PyYAML",
"certifi",
"click>=5.0",
"dataclasses; python_version < \"3.7\"",
"markdown",
"requests",
"requests-oauthlib"
],
"requires_python": ">=3.6",
"version": "1.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "420582b1786b238d035244415dc11536acdbcb24762cba1c5e9bddc565960277",
"url": "https://files.pythonhosted.org/packages/c2/97/fec57290b14b6dffa875878f4c34a4e26785639eda982c2a1d8d8505b286/asgi_lifespan-2.0.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "d46a31ff681e9edf1f776c9f61cf8fa6274cc66fca8cb4f11e940b1183e18842",
"url": "https://files.pythonhosted.org/packages/30/f0/14b57a6065740a3f969eacacb4e731db685870ba77ac2542fc6be0fa9899/asgi-lifespan-2.0.0.tar.gz"
}
],
"project_name": "asgi-lifespan",
"requires_dists": [
"sniffio"
],
"requires_python": ">=3.7",
"version": "2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "9654085f2b22f66952124de13a8071b54453ff972c25c59b5ce1173a4283ffd9",
"url": "https://files.pythonhosted.org/packages/6c/06/3a35225d0cb2b630faddbe5c97dcc85e6f3c72873428374795b9bee08fda/asyncpg-0.27.0-cp310-cp310-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "720986d9a4705dd8a40fdf172036f5ae787225036a7eb46e704c45aa8f62c054",
"url": "https://files.pythonhosted.org/packages/04/78/06b4979eb2b553a450fe38008353f5cba152a66de83c64b1639046e9ca0e/asyncpg-0.27.0.tar.gz"
},
{
"algorithm": "sha256",
"hash": "a7a94c03386bb95456b12c66026b3a87d1b965f0f1e5733c36e7229f8f137747",
"url": "https://files.pythonhosted.org/packages/15/83/055b9aadaf23e8d4276e85208cf73c38b25ff931706e83c3a032ea84dc4c/asyncpg-0.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "bfc3980b4ba6f97138b04f0d32e8af21d6c9fa1f8e6e140c07d15690a0a99279",
"url": "https://files.pythonhosted.org/packages/82/06/10eabd23fe4f6297726747964121cbfe6a9c9969dd1d5596302fd83a171b/asyncpg-0.27.0-cp310-cp310-musllinux_1_1_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "7a6206210c869ebd3f4eb9e89bea132aefb56ff3d1b7dd7e26b102b17e27bbb1",
"url": "https://files.pythonhosted.org/packages/df/7d/a6b3aa9c80791ec7daa358856bd7c9690eddfbde68408c13d2d8f3e9a3af/asyncpg-0.27.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "fca608d199ffed4903dce1bcd97ad0fe8260f405c1c225bdf0002709132171c2",
"url": "https://files.pythonhosted.org/packages/e6/c9/7a361daeeec3ab9b63347a5629895099317003b1db9949536339848aea35/asyncpg-0.27.0-cp310-cp310-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "20b596d8d074f6f695c13ffb8646d0b6bb1ab570ba7b0cfd349b921ff03cfc1e",
"url": "https://files.pythonhosted.org/packages/f3/66/b9efec66d97008fd0276382fdcb9ebd47e8c66484d4ae2feef67e7d482a9/asyncpg-0.27.0-cp310-cp310-macosx_11_0_arm64.whl"
}
],
"project_name": "asyncpg",
"requires_dists": [
"Cython<0.30.0,>=0.29.24; extra == \"dev\"",
"Sphinx~=4.1.2; extra == \"dev\"",
"Sphinx~=4.1.2; extra == \"docs\"",
"flake8~=5.0.4; extra == \"dev\"",
"flake8~=5.0.4; extra == \"test\"",
"pytest>=6.0; extra == \"dev\"",
"sphinx-rtd-theme~=0.5.2; extra == \"dev\"",
"sphinx-rtd-theme~=0.5.2; extra == \"docs\"",
"sphinxcontrib-asyncio~=0.3.0; extra == \"dev\"",
"sphinxcontrib-asyncio~=0.3.0; extra == \"docs\"",
"typing-extensions>=3.7.4.3; python_version < \"3.8\"",
"uvloop>=0.15.3; platform_system != \"Windows\" and extra == \"dev\"",
"uvloop>=0.15.3; platform_system != \"Windows\" and extra == \"test\""
],
"requires_python": ">=3.7.0",
"version": "0.27"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "f9f17d2aec496a9aa6b76f53e3b614c965223c061982d434d160f930c698a9db",
"url": "https://files.pythonhosted.org/packages/68/aa/5fc646cae6e997c3adf3b0a7e257cda75cff21fcba15354dffd67789b7bb/cachetools-5.2.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757",
"url": "https://files.pythonhosted.org/packages/c2/6f/278225c5a070a18a76f85db5f1238f66476579fa9b04cda3722331dcc90f/cachetools-5.2.0.tar.gz"
}
],
"project_name": "cachetools",
"requires_dists": [],
"requires_python": "~=3.7",
"version": "5.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382",
"url": "https://files.pythonhosted.org/packages/1d/38/fa96a426e0c0e68aabc68e896584b83ad1eec779265a028e156ce509630e/certifi-2022.9.24-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14",
"url": "https://files.pythonhosted.org/packages/cb/a4/7de7cd59e429bd0ee6521ba58a75adaec136d32f91a761b28a11d8088d44/certifi-2022.9.24.tar.gz"
}
],
"project_name": "certifi",
"requires_dists": [],
"requires_python": ">=3.6",
"version": "2022.9.24"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e",
"url": "https://files.pythonhosted.org/packages/0e/65/0d7b5dad821ced4dcd43f96a362905a68ce71e6b5f5cfd2fada867840582/cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9",
"url": "https://files.pythonhosted.org/packages/2b/a8/050ab4f0c3d4c1b8aaa805f70e26e84d0e27004907c5b8ecc1d31815f92a/cffi-1.15.1.tar.gz"
},
{
"algorithm": "sha256",
"hash": "fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01",
"url": "https://files.pythonhosted.org/packages/32/bd/d0809593f7976828f06a492716fbcbbfb62798bbf60ea1f65200b8d49901/cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl"
},
{
"algorithm": "sha256",
"hash": "dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4",
"url": "https://files.pythonhosted.org/packages/88/89/c34caf63029fb7628ec2ebd5c88ae0c9bd17db98c812e4065a4d020ca41f/cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e",
"url": "https://files.pythonhosted.org/packages/aa/02/ab15b3aa572759df752491d5fa0f74128cd14e002e8e3257c1ab1587810b/cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl"
},
{
"algorithm": "sha256",
"hash": "5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f",
"url": "https://files.pythonhosted.org/packages/af/da/9441d56d7dd19d07dcc40a2a5031a1f51c82a27cee3705edf53dadcac398/cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
},
{
"algorithm": "sha256",
"hash": "39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21",
"url": "https://files.pythonhosted.org/packages/e8/ff/c4b7a358526f231efa46a375c959506c87622fb4a2c5726e827c55e6adf2/cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185",
"url": "https://files.pythonhosted.org/packages/ea/be/c4ad40ad441ac847b67c7a37284ae3c58f39f3e638c6b0f85fb662233825/cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl"
},
{
"algorithm": "sha256",
"hash": "3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd",
"url": "https://files.pythonhosted.org/packages/ed/a3/c5f01988ddb70a187c3e6112152e01696188c9f8a4fa4c68aa330adbb179/cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl"
},
{
"algorithm": "sha256",
"hash": "21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc",
"url": "https://files.pythonhosted.org/packages/ef/41/19da352d341963d29a33bdb28433ba94c05672fb16155f794fad3fd907b0/cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
}
],
"project_name": "cffi",
"requires_dists": [
"pycparser"
],
"requires_python": null,
"version": "1.15.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f",
"url": "https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845",
"url": "https://files.pythonhosted.org/packages/a1/34/44964211e5410b051e4b8d2869c470ae8a68ae274953b1c7de6d98bbcf94/charset-normalizer-2.1.1.tar.gz"
}
],
"project_name": "charset-normalizer",
"requires_dists": [
"unicodedata2; extra == \"unicode_backport\""
],
"requires_python": ">=3.6.0",
"version": "2.1.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48",
"url": "https://files.pythonhosted.org/packages/c2/f1/df59e28c642d583f7dacffb1e0965d0e00b218e0186d7858ac5233dce840/click-8.1.3-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e",
"url": "https://files.pythonhosted.org/packages/59/87/84326af34517fca8c58418d148f2403df25303e02736832403587318e9e8/click-8.1.3.tar.gz"
}
],
"project_name": "click",
"requires_dists": [
"colorama; platform_system == \"Windows\"",
"importlib-metadata; python_version < \"3.8\""
],
"requires_python": ">=3.7",
"version": "8.1.3"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "7428798d5926d8fcbfd092d18d01a2a03daf8237d8fcdc8095d256b8490796f0",
"url": "https://files.pythonhosted.org/packages/cf/26/cd6c4177273ee35f7a31245893489c68bc340988f12ca315b392f1f18a93/cloudpickle-2.2.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "3f4219469c55453cfe4737e564b67c2a149109dabf7f242478948b895f61106f",
"url": "https://files.pythonhosted.org/packages/f9/9a/4bbae686297e3af55e08292145dde750999d2652d9fb408e605776c53348/cloudpickle-2.2.0.tar.gz"
}
],
"project_name": "cloudpickle",
"requires_dists": [],
"requires_python": ">=3.6",
"version": "2.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6",
"url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44",
"url": "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz"
}
],
"project_name": "colorama",
"requires_dists": [],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7",
"version": "0.4.6"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9",
"url": "https://files.pythonhosted.org/packages/b1/92/dfd892312d822f36c55366118b95d914e5f16de11044a27cf10a7d71bbbf/commonmark-0.9.1-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60",
"url": "https://files.pythonhosted.org/packages/60/48/a60f593447e8f0894ebb7f6e6c1f25dafc5e89c5879fdc9360ae93ff83f0/commonmark-0.9.1.tar.gz"
}
],
"project_name": "commonmark",
"requires_dists": [
"flake8==3.7.8; extra == \"test\"",
"future>=0.14.0; python_version < \"3\"",
"hypothesis==3.55.3; extra == \"test\""
],
"requires_python": null,
"version": "0.9.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "8e367438facd5ff366530ae95a768cc0774b609da31cf8e112464e540dc1b8eb",
"url": "https://files.pythonhosted.org/packages/48/27/6b63bf1ce89877844681c4158cd81a77bc365110adbb0359c9ecb60e53f3/coolname-2.0.0-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "7b4711c07016ab91feded8b87dc86ce376d1f972841f51dc85ec4f8c296f79ac",
"url": "https://files.pythonhosted.org/packages/58/12/aa67173c0a7005a3b850621c0d4d368fcc8de628e23abce3e5b64fbea7d0/coolname-2.0.0.tar.gz"
}
],
"project_name": "coolname",
"requires_dists": [],
"requires_python": null,
"version": "2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "d6ed8386d5f4bbb29419dc1b65c4909c04a2322bd15ec0dc5b2877bfa1b75c7a",
"url": "https://files.pythonhosted.org/packages/0f/4d/0cc5a7f4bdcefecebdf8a95c8372606c13d3355e8536d9cd3e7070e94269/croniter-1.3.8-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "32a5ec04e97ec0837bcdf013767abd2e71cceeefd3c2e14c804098ce51ad6cd9",
"url": "https://files.pythonhosted.org/packages/16/f3/aa1201a8ec1a9d6eddf13de28f38c21700338b1d0663d0ebaabd5df34f7a/croniter-1.3.8.tar.gz"
}
],
"project_name": "croniter",
"requires_dists": [
"python-dateutil"
],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.6",
"version": "1.3.8"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "8a4b2bdb68a447fadebfd7d24855758fe2d6fecc7fed0b78d190b1af39a8e3b0",
"url": "https://files.pythonhosted.org/packages/64/4e/04dced6a515032b7bf3e8f287c7ff73a7d1b438c8394aa50b9fceb4077e2/cryptography-38.0.4-cp36-abi3-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "10652dd7282de17990b88679cb82f832752c4e8237f0c714be518044269415db",
"url": "https://files.pythonhosted.org/packages/12/9c/e44f95e71aedc5fefe3425df662dd17c6f94fbf68470b56c4873c43f27d2/cryptography-38.0.4-cp36-abi3-manylinux_2_24_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "ce127dd0a6a0811c251a6cddd014d292728484e530d80e872ad9806cfb1c5b3c",
"url": "https://files.pythonhosted.org/packages/26/f8/a81170a816679fca9ccd907b801992acfc03c33f952440421c921af2cc57/cryptography-38.0.4-cp36-abi3-manylinux_2_28_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "50a1494ed0c3f5b4d07650a68cd6ca62efe8b596ce743a5c94403e6f11bf06c1",
"url": "https://files.pythonhosted.org/packages/32/ed/d7de730e1452ed714f2f8eee123669d4819080e03ec523b131d9b709d060/cryptography-38.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "1f13ddda26a04c06eb57119caf27a524ccae20533729f4b1e4a69b54e07035eb",
"url": "https://files.pythonhosted.org/packages/52/1b/49ebc2b59e9126f1f378ae910e98704d54a3f48b78e2d6d6c8cfe6fbe06f/cryptography-38.0.4-cp36-abi3-macosx_10_10_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "a10498349d4c8eab7357a8f9aa3463791292845b79597ad1b98a543686fb1ec8",
"url": "https://files.pythonhosted.org/packages/63/d4/66b3b4ffe51b47a065b5a5a00e6a4c8aa6cdfa4f2453adfa0aac77fd3511/cryptography-38.0.4-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "2ec2a8714dd005949d4019195d72abed84198d877112abb5a27740e217e0ea8d",
"url": "https://files.pythonhosted.org/packages/6d/47/929f07e12ebbcfedddb95397c49677dd82bb5a0bb648582b10d5f65e321c/cryptography-38.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "2fa36a7b2cc0998a3a4d5af26ccb6273f3df133d61da2ba13b3286261e7efb70",
"url": "https://files.pythonhosted.org/packages/75/7a/2ea7dd2202638cf1053aaa8fbbaddded0b78c78832b3d03cafa0416a6c84/cryptography-38.0.4-cp36-abi3-macosx_10_10_universal2.whl"
},
{
"algorithm": "sha256",
"hash": "bfe6472507986613dc6cc00b3d492b2f7564b02b3b3682d25ca7f40fa3fd321b",
"url": "https://files.pythonhosted.org/packages/a2/8f/6c52b1f9d650863e8f67edbe062c04f1c8455579eaace1593d8fe469319a/cryptography-38.0.4-cp36-abi3-manylinux_2_28_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "53049f3379ef05182864d13bb9686657659407148f901f3f1eee57a733fb4b00",
"url": "https://files.pythonhosted.org/packages/b1/44/6d6cb7cff7f2dbc59fde50e5b82bc6df075e73af89a25eba1a6193c22165/cryptography-38.0.4-cp36-abi3-musllinux_1_1_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "175c1a818b87c9ac80bb7377f5520b7f31b3ef2a0004e2420319beadedb67290",
"url": "https://files.pythonhosted.org/packages/e3/3f/41186b1f2fd86a542d399175f6b8e43f82cd4dfa51235a0b030a042b811a/cryptography-38.0.4.tar.gz"
}
],
"project_name": "cryptography",
"requires_dists": [
"bcrypt>=3.1.5; extra == \"ssh\"",
"black; extra == \"pep8test\"",
"cffi>=1.12",
"flake8-import-order; extra == \"pep8test\"",
"flake8; extra == \"pep8test\"",
"hypothesis!=3.79.2,>=1.11.4; extra == \"test\"",
"iso8601; extra == \"test\"",
"pep8-naming; extra == \"pep8test\"",
"pretend; extra == \"test\"",
"pyenchant>=1.6.11; extra == \"docstest\"",
"pytest-benchmark; extra == \"test\"",
"pytest-cov; extra == \"test\"",
"pytest-subtests; extra == \"test\"",
"pytest-xdist; extra == \"test\"",
"pytest>=6.2.0; extra == \"test\"",
"pytz; extra == \"test\"",
"setuptools-rust>=0.11.4; extra == \"sdist\"",
"sphinx!=1.8.0,!=3.1.0,!=3.1.1,>=1.6.5; extra == \"docs\"",
"sphinx-rtd-theme; extra == \"docs\"",
"sphinxcontrib-spelling>=4.0.1; extra == \"docstest\"",
"twine>=1.12.0; extra == \"docstest\""
],
"requires_python": ">=3.6",
"version": "38.0.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "dbcb3bd2fa80dca0788ed908218bf43972772009b881ed1e20dfc29a65e49782",
"url": "https://files.pythonhosted.org/packages/d5/b3/a5e41798a6d4b92880998e0d9e6980e57c5d039f7f7144f87627a6b19084/docker-6.0.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "896c4282e5c7af5c45e8b683b0b0c33932974fe6e50fc6906a0a83616ab3da97",
"url": "https://files.pythonhosted.org/packages/79/26/6609b51ecb418e12d1534d00b888ce7e108f38b47dc6cd589598d5c6aaa2/docker-6.0.1.tar.gz"
}
],
"project_name": "docker",
"requires_dists": [
"packaging>=14.0",
"paramiko>=2.4.3; extra == \"ssh\"",
"pywin32>=304; sys_platform == \"win32\"",
"requests>=2.26.0",
"urllib3>=1.26.0",
"websocket-client>=0.32.0"
],
"requires_python": ">=3.7",
"version": "6.0.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "263b718bb384422fe3d042ffc9a0c8dece5e034ab6586ff034f6b4b1667c3eee",
"url": "https://files.pythonhosted.org/packages/d8/09/ce090f6d53ce8b6335954488087210fa1e054c4a65f74d5f76aed254c159/fastapi-0.88.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "915bf304180a0e7c5605ec81097b7d4cd8826ff87a02bb198e336fb9f3b5ff02",
"url": "https://files.pythonhosted.org/packages/f0/d1/55559f6b09ac336cbb4640ab4c2da0fd79a955eed31f475f0a5ba2ad102e/fastapi-0.88.0.tar.gz"
}
],
"project_name": "fastapi",
"requires_dists": [
"anyio[trio]<4.0.0,>=3.2.1; extra == \"test\"",
"black==22.10.0; extra == \"test\"",
"coverage[toml]<7.0,>=6.5.0; extra == \"test\"",
"databases[sqlite]<0.7.0,>=0.3.2; extra == \"test\"",
"email-validator<2.0.0,>=1.1.1; extra == \"test\"",
"email-validator>=1.1.1; extra == \"all\"",
"flask<3.0.0,>=1.1.2; extra == \"test\"",
"httpx<0.24.0,>=0.23.0; extra == \"test\"",
"httpx>=0.23.0; extra == \"all\"",
"isort<6.0.0,>=5.0.6; extra == \"test\"",
"itsdangerous>=1.1.0; extra == \"all\"",
"jinja2>=2.11.2; extra == \"all\"",
"mdx-include<2.0.0,>=1.4.1; extra == \"doc\"",
"mkdocs-markdownextradata-plugin<0.3.0,>=0.1.7; extra == \"doc\"",
"mkdocs-material<9.0.0,>=8.1.4; extra == \"doc\"",
"mkdocs<2.0.0,>=1.1.2; extra == \"doc\"",
"mypy==0.982; extra == \"test\"",
"orjson<4.0.0,>=3.2.1; extra == \"test\"",
"orjson>=3.2.1; extra == \"all\"",
"passlib[bcrypt]<2.0.0,>=1.7.2; extra == \"test\"",
"peewee<4.0.0,>=3.13.3; extra == \"test\"",
"pre-commit<3.0.0,>=2.17.0; extra == \"dev\"",
"pydantic!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0,>=1.6.2",
"pytest<8.0.0,>=7.1.3; extra == \"test\"",
"python-jose[cryptography]<4.0.0,>=3.3.0; extra == \"test\"",
"python-multipart<0.0.6,>=0.0.5; extra == \"test\"",
"python-multipart>=0.0.5; extra == \"all\"",
"pyyaml<7.0.0,>=5.3.1; extra == \"doc\"",
"pyyaml<7.0.0,>=5.3.1; extra == \"test\"",
"pyyaml>=5.3.1; extra == \"all\"",
"ruff==0.0.138; extra == \"dev\"",
"ruff==0.0.138; extra == \"test\"",
"sqlalchemy<=1.4.41,>=1.3.18; extra == \"test\"",
"starlette==0.22.0",
"typer[all]<0.7.0,>=0.6.1; extra == \"doc\"",
"types-orjson==3.6.2; extra == \"test\"",
"types-ujson==5.5.0; extra == \"test\"",
"ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0,>=4.0.1; extra == \"test\"",
"ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == \"all\"",
"uvicorn[standard]<0.19.0,>=0.12.0; extra == \"dev\"",
"uvicorn[standard]>=0.12.0; extra == \"all\""
],
"requires_python": ">=3.7",
"version": "0.88"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "d6e462003e3dcdcb8c7aa84c73a228f8227e72453cd22570e2363e8844edfe7b",
"url": "https://files.pythonhosted.org/packages/37/57/eb7c3c10b187d3b8565946772ce0229c79e3c623010eda0aeb5032ff56f4/fsspec-2022.11.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "259d5fd5c8e756ff2ea72f42e7613c32667dc2049a4ac3d84364a7ca034acb8b",
"url": "https://files.pythonhosted.org/packages/44/7c/fb753d18e2eeb186a47ecd6939326f7633a027fe23a44ee7912978e64819/fsspec-2022.11.0.tar.gz"
}
],
"project_name": "fsspec",
"requires_dists": [
"adlfs; extra == \"abfs\"",
"adlfs; extra == \"adl\"",
"aiohttp!=4.0.0a0,!=4.0.0a1; extra == \"http\"",
"dask; extra == \"dask\"",
"distributed; extra == \"dask\"",
"dropbox; extra == \"dropbox\"",
"dropboxdrivefs; extra == \"dropbox\"",
"fusepy; extra == \"fuse\"",
"gcsfs; extra == \"gcs\"",
"gcsfs; extra == \"gs\"",
"importlib-metadata; python_version < \"3.8\" and extra == \"entrypoints\"",
"libarchive-c; extra == \"libarchive\"",
"ocifs; extra == \"oci\"",
"panel; extra == \"gui\"",
"paramiko; extra == \"sftp\"",
"paramiko; extra == \"ssh\"",
"pyarrow>=1; extra == \"arrow\"",
"pyarrow>=1; extra == \"hdfs\"",
"pygit2; extra == \"git\"",
"requests; extra == \"dropbox\"",
"requests; extra == \"github\"",
"requests; extra == \"http\"",
"s3fs; extra == \"s3\"",
"smbprotocol; extra == \"smb\"",
"tqdm; extra == \"tqdm\""
],
"requires_python": ">=3.7",
"version": "2022.11"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6897b93556d8d807ad70701bb89f000183aea366ca7ed94680828b37437a4994",
"url": "https://files.pythonhosted.org/packages/59/18/f8201fa70cbc7bebc14a50e891783c88c277a9158e9c8c07a9044ecd98eb/google_auth-2.15.0-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "72f12a6cfc968d754d7bdab369c5c5c16032106e52d32c6dfd8484e4c01a6d1f",
"url": "https://files.pythonhosted.org/packages/52/a6/72c80f4a0b37c2c32d35636b2373bdf07c1dad81b109f9361742d3aa1cbe/google-auth-2.15.0.tar.gz"
}
],
"project_name": "google-auth",
"requires_dists": [
"aiohttp<4.0.0dev,>=3.6.2; python_version >= \"3.6\" and extra == \"aiohttp\"",
"cachetools<6.0,>=2.0.0",
"cryptography==36.0.2; extra == \"enterprise_cert\"",
"cryptography>=38.0.3; extra == \"pyopenssl\"",
"enum34>=1.1.10; python_version < \"3.4\"",
"pyasn1-modules>=0.2.1",
"pyopenssl==22.0.0; extra == \"enterprise_cert\"",
"pyopenssl>=20.0.0; extra == \"pyopenssl\"",
"pyu2f>=0.1.5; extra == \"reauth\"",
"requests<3.0.0dev,>=2.20.0; extra == \"aiohttp\"",
"rsa<4.6; python_version < \"3.6\"",
"rsa<5,>=3.1.4; python_version >= \"3.6\"",
"six>=1.9.0"
],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7",
"version": "2.15"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "fb412b7db83fe56847df9c47b6fe3f13911b06339c2aa02dcc09dce8bbf582cd",
"url": "https://files.pythonhosted.org/packages/8d/34/bcd0848d4f748831058aabf76749f5979bc3c656770be511a11cbd58da4f/greenlet-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "0722c9be0797f544a3ed212569ca3fe3d9d1a1b13942d10dd6f0e8601e484d26",
"url": "https://files.pythonhosted.org/packages/3b/c4/01247dcd15d3f9919760bc8c0846f97020e5bacc35b7899cf5cb02313a16/greenlet-2.0.1-cp310-cp310-macosx_10_15_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "be35822f35f99dcc48152c9839d0171a06186f2d71ef76dc57fa556cc9bf6b45",
"url": "https://files.pythonhosted.org/packages/63/62/26fe837a910eadb48973458641f2d084967dbfdf000a7fefbb89bef8a753/greenlet-2.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
},
{
"algorithm": "sha256",
"hash": "4d37990425b4687ade27810e3b1a1c37825d242ebc275066cfee8cb6b8829ccd",
"url": "https://files.pythonhosted.org/packages/b5/c5/827149685292c53e5da546351e4f40f5a8513f200d920ae80423963dadef/greenlet-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "c140e7eb5ce47249668056edf3b7e9900c6a2e22fb0eaf0513f18a1b2c14e1da",
"url": "https://files.pythonhosted.org/packages/dd/5e/7309beef044bb4ceb0f052dc3797678a5f4eb6d07789787b2e4a15803b7a/greenlet-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "d21681f09e297a5adaa73060737e3aa1279a13ecdcfcc6ef66c292cb25125b2d",
"url": "https://files.pythonhosted.org/packages/e1/1f/b5b8099362fd1c4a45a1763981a2c8885344d19952970bebefa2b73edc0d/greenlet-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "42e602564460da0e8ee67cb6d7236363ee5e131aa15943b6670e44e5c2ed0f67",
"url": "https://files.pythonhosted.org/packages/fd/6a/f07b0028baff9bca61ecfcd9ee021e7e33369da8094f00eff409f2ff32be/greenlet-2.0.1.tar.gz"
}
],
"project_name": "greenlet",
"requires_dists": [
"Sphinx; extra == \"docs\"",
"docutils<0.18; python_version < \"3\" and extra == \"docs\"",
"faulthandler; (python_version == \"2.7\" and platform_python_implementation == \"CPython\") and extra == \"test\"",
"objgraph; extra == \"test\"",
"psutil; extra == \"test\""
],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
"version": "2.0.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "cfd17f61f3815be5a83f27303cd3db6e9fd9328d4070e4824cd5573763a28961",
"url": "https://files.pythonhosted.org/packages/08/69/e7f17bcc13189261e058d9223e263d70d697b471fbf52e901e8c280dc968/griffe-0.24.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "acc7e6aac2495ffbfd70b2cdd801fff1299ec3e5efaaad23ccd316b711f1d11d",
"url": "https://files.pythonhosted.org/packages/42/e8/7d7cf361bcdf91d610445408eb0a871c879b56fa25db5d727c2c637975e1/griffe-0.24.1.tar.gz"
}
],
"project_name": "griffe",
"requires_dists": [
"aiofiles~=0.7; extra == \"async\"",
"cached-property; python_version < \"3.8\"",
"colorama>=0.4"
],
"requires_python": ">=3.7",
"version": "0.24.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761",
"url": "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d",
"url": "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz"
}
],
"project_name": "h11",
"requires_dists": [
"typing-extensions; python_version < \"3.8\""
],
"requires_python": ">=3.7",
"version": "0.14"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "03a46bcf682256c95b5fd9e9a99c1323584c3eec6440d379b9903d709476bc6d",
"url": "https://files.pythonhosted.org/packages/2a/e5/db6d438da759efbb488c4f3fbdab7764492ff3c3f953132efa6b9f0e9e53/h2-4.1.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "a83aca08fbe7aacb79fec788c9c0bac936343560ed9ec18b82a13a12c28d2abb",
"url": "https://files.pythonhosted.org/packages/2a/32/fec683ddd10629ea4ea46d206752a95a2d8a48c22521edd70b142488efe1/h2-4.1.0.tar.gz"
}
],
"project_name": "h2",
"requires_dists": [
"hpack<5,>=4.0",
"hyperframe<7,>=6.0"
],
"requires_python": ">=3.6.1",
"version": "4.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c",
"url": "https://files.pythonhosted.org/packages/d5/34/e8b383f35b77c402d28563d2b8f83159319b509bc5f760b15d60b0abf165/hpack-4.0.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095",
"url": "https://files.pythonhosted.org/packages/3e/9b/fda93fb4d957db19b0f6b370e79d586b3e8528b20252c729c476a2c02954/hpack-4.0.0.tar.gz"
}
],
"project_name": "hpack",
"requires_dists": [],
"requires_python": ">=3.6.1",
"version": "4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "52c79095197178856724541e845f2db86d5f1527640d9254b5b8f6f6cebfdee6",
"url": "https://files.pythonhosted.org/packages/91/52/93f22e5441539256c0d113faf17e45284aee16eebdd95089e3ca6f480b18/httpcore-0.16.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "c35c5176dc82db732acfd90b581a3062c999a72305df30c0fc8fafd8e4aca068",
"url": "https://files.pythonhosted.org/packages/9b/20/26f6cc4fd00391f8f1c57b0020f5c6eec23904723db04b6f7608e222d815/httpcore-0.16.2.tar.gz"
}
],
"project_name": "httpcore",
"requires_dists": [
"anyio<5.0,>=3.0",
"certifi",
"h11<0.15,>=0.13",
"h2<5,>=3; extra == \"http2\"",
"sniffio==1.*",
"socksio==1.*; extra == \"socks\""
],
"requires_python": ">=3.7",
"version": "0.16.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "0b9b1f0ee18b9978d637b0776bfd7f54e2ca278e063e3586d8f01cda89e042a8",
"url": "https://files.pythonhosted.org/packages/e1/74/cdce73069e021ad5913451b86c2707b027975cf302016ca557686d87eb41/httpx-0.23.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "202ae15319be24efe9a8bd4ed4360e68fde7b38bcc2ce87088d416f026667d19",
"url": "https://files.pythonhosted.org/packages/8a/df/a3e8b91dfb452e645ef110985a30f0915276a1a2144004c7671c07bb203c/httpx-0.23.1.tar.gz"
}
],
"project_name": "httpx",
"requires_dists": [
"brotli; platform_python_implementation == \"CPython\" and extra == \"brotli\"",
"brotlicffi; platform_python_implementation != \"CPython\" and extra == \"brotli\"",
"certifi",
"click==8.*; extra == \"cli\"",
"h2<5,>=3; extra == \"http2\"",
"httpcore<0.17.0,>=0.15.0",
"pygments==2.*; extra == \"cli\"",
"rfc3986[idna2008]<2,>=1.3",
"rich<13,>=10; extra == \"cli\"",
"sniffio",
"socksio==1.*; extra == \"socks\""
],
"requires_python": ">=3.7",
"version": "0.23.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15",
"url": "https://files.pythonhosted.org/packages/d7/de/85a784bcc4a3779d1753a7ec2dee5de90e18c7bcf402e71b51fcf150b129/hyperframe-6.0.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914",
"url": "https://files.pythonhosted.org/packages/5a/2a/4747bff0a17f7281abe73e955d60d80aae537a5d203f417fa1c2e7578ebb/hyperframe-6.0.1.tar.gz"
}
],
"project_name": "hyperframe",
"requires_dists": [],
"requires_python": ">=3.6.1",
"version": "6.0.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2",
"url": "https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4",
"url": "https://files.pythonhosted.org/packages/8b/e1/43beb3d38dba6cb420cefa297822eac205a277ab43e5ba5d5c46faf96438/idna-3.4.tar.gz"
}
],
"project_name": "idna",
"requires_dists": [],
"requires_python": ">=3.5",
"version": "3.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "26ac385719ac9f54df8a2f0827bb8253aa3ea8ab7b3368457bcdb8c14595a397",
"url": "https://files.pythonhosted.org/packages/a3/55/f7c93bae36d869292aedfbcbae8b091386194874f16390d680136edd2b28/jsonpatch-1.32-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "b6ddfe6c3db30d81a96aaeceb6baf916094ffa23d7dd5fa2c13e13f8b6e600c2",
"url": "https://files.pythonhosted.org/packages/21/67/83452af2a6db7c4596d1e2ecaa841b9a900980103013b867f2865e5e1cf0/jsonpatch-1.32.tar.gz"
}
],
"project_name": "jsonpatch",
"requires_dists": [
"jsonpointer>=1.9"
],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
"version": "1.32"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "51801e558539b4e9cd268638c078c6c5746c9ac96bc38152d443400e4f3793e9",
"url": "https://files.pythonhosted.org/packages/a3/be/8dc9d31b50e38172c8020c40f497ce8debdb721545ddb9fcb7cca89ea9e6/jsonpointer-2.3-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "97cba51526c829282218feb99dab1b1e6bdf8efd1c43dc9d57be093c0d69c99a",
"url": "https://files.pythonhosted.org/packages/a0/6c/c52556b957a0f904e7c45585444feef206fe5cb1ff656303a1d6d922a53b/jsonpointer-2.3.tar.gz"
}
],
"project_name": "jsonpointer",
"requires_dists": [],
"requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7",
"version": "2.3"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "eb42333dad0bb5caf4e66460c6a4a1a36f0f057a040f35018f6c05a699baed86",
"url": "https://files.pythonhosted.org/packages/e9/ad/2f2d4f22883256a505a4997cdc48c556e88e308c98eea6579e5dafcaa5e9/kubernetes-25.3.0-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "213befbb4e5aed95f94950c7eed0c2322fc5a2f8f40932e58d28fdd42d90836c",
"url": "https://files.pythonhosted.org/packages/e5/c7/cc2b5e62216f5e18c8e27b1ae672684ce147e34b2738a4b251023dc4e9bb/kubernetes-25.3.0.tar.gz"
}
],
"project_name": "kubernetes",
"requires_dists": [
"adal>=1.0.2; extra == \"adal\"",
"certifi>=14.05.14",
"google-auth>=1.0.1",
"ipaddress>=1.0.17; python_version == \"2.7\"",
"python-dateutil>=2.5.3",
"pyyaml>=5.4.1",
"requests",
"requests-oauthlib",
"setuptools>=21.0.0",
"six>=1.9.0",
"urllib3>=1.24.2",
"websocket-client!=0.40.0,!=0.41.*,!=0.42.*,>=0.32.0"
],
"requires_python": ">=3.6",
"version": "25.3"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "c97c79c018b9165ac9922ae4f32da095ffd3c4e6872b45eded42926deea46818",
"url": "https://files.pythonhosted.org/packages/03/3b/68690a035ba7347860f1b8c0cde853230ba69ff41df5884ea7d89fe68cd3/Mako-1.2.4-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "d60a3903dc3bb01a18ad6a89cdbe2e4eadc69c0bc8ef1e3773ba53d44c3f7a34",
"url": "https://files.pythonhosted.org/packages/05/5f/2ba6e026d33a0e6ddc1dddf9958677f76f5f80c236bd65309d280b166d3e/Mako-1.2.4.tar.gz"
}
],
"project_name": "mako",
"requires_dists": [
"Babel; extra == \"babel\"",
"MarkupSafe>=0.9.2",
"importlib-metadata; python_version < \"3.8\"",