Spaces:
Running
Running
Update
Browse files- .pre-commit-config.yaml +2 -24
- .vscode/settings.json +1 -5
- README.md +1 -1
- pyproject.toml +5 -2
- requirements.txt +9 -9
- uv.lock +180 -185
.pre-commit-config.yaml
CHANGED
@@ -13,20 +13,15 @@ repos:
|
|
13 |
args: ["--fix=lf"]
|
14 |
- id: requirements-txt-fixer
|
15 |
- id: trailing-whitespace
|
16 |
-
- repo: https://github.com/myint/docformatter
|
17 |
-
rev: v1.7.5
|
18 |
-
hooks:
|
19 |
-
- id: docformatter
|
20 |
-
args: ["--in-place"]
|
21 |
- repo: https://github.com/astral-sh/ruff-pre-commit
|
22 |
-
rev: v0.8.
|
23 |
hooks:
|
24 |
- id: ruff
|
25 |
args: ["--fix"]
|
26 |
- id: ruff-format
|
27 |
args: ["--line-length", "119"]
|
28 |
- repo: https://github.com/pre-commit/mirrors-mypy
|
29 |
-
rev: v1.14.
|
30 |
hooks:
|
31 |
- id: mypy
|
32 |
args: ["--ignore-missing-imports"]
|
@@ -37,20 +32,3 @@ repos:
|
|
37 |
"types-PyYAML",
|
38 |
"types-pytz",
|
39 |
]
|
40 |
-
- repo: https://github.com/kynan/nbstripout
|
41 |
-
rev: 0.8.1
|
42 |
-
hooks:
|
43 |
-
- id: nbstripout
|
44 |
-
args:
|
45 |
-
[
|
46 |
-
"--extra-keys",
|
47 |
-
"metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
|
48 |
-
]
|
49 |
-
- repo: https://github.com/nbQA-dev/nbQA
|
50 |
-
rev: 1.9.1
|
51 |
-
hooks:
|
52 |
-
- id: nbqa-black
|
53 |
-
- id: nbqa-pyupgrade
|
54 |
-
args: ["--py37-plus"]
|
55 |
-
- id: nbqa-isort
|
56 |
-
args: ["--float-to-top"]
|
|
|
13 |
args: ["--fix=lf"]
|
14 |
- id: requirements-txt-fixer
|
15 |
- id: trailing-whitespace
|
|
|
|
|
|
|
|
|
|
|
16 |
- repo: https://github.com/astral-sh/ruff-pre-commit
|
17 |
+
rev: v0.8.6
|
18 |
hooks:
|
19 |
- id: ruff
|
20 |
args: ["--fix"]
|
21 |
- id: ruff-format
|
22 |
args: ["--line-length", "119"]
|
23 |
- repo: https://github.com/pre-commit/mirrors-mypy
|
24 |
+
rev: v1.14.1
|
25 |
hooks:
|
26 |
- id: mypy
|
27 |
args: ["--ignore-missing-imports"]
|
|
|
32 |
"types-PyYAML",
|
33 |
"types-pytz",
|
34 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.vscode/settings.json
CHANGED
@@ -13,9 +13,5 @@
|
|
13 |
"files.insertFinalNewline": false
|
14 |
},
|
15 |
"notebook.output.scrolling": true,
|
16 |
-
"notebook.
|
17 |
-
"notebook.formatOnSave.enabled": true,
|
18 |
-
"notebook.codeActionsOnSave": {
|
19 |
-
"source.organizeImports": "explicit"
|
20 |
-
}
|
21 |
}
|
|
|
13 |
"files.insertFinalNewline": false
|
14 |
},
|
15 |
"notebook.output.scrolling": true,
|
16 |
+
"notebook.formatOnSave.enabled": true
|
|
|
|
|
|
|
|
|
17 |
}
|
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: ⚡
|
|
4 |
colorFrom: red
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 5.
|
8 |
app_file: app.py
|
9 |
license: mit
|
10 |
---
|
|
|
4 |
colorFrom: red
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 5.11.0
|
8 |
app_file: app.py
|
9 |
license: mit
|
10 |
---
|
pyproject.toml
CHANGED
@@ -6,8 +6,8 @@ readme = "README.md"
|
|
6 |
requires-python = ">=3.10"
|
7 |
dependencies = [
|
8 |
"datasets>=3.2.0",
|
9 |
-
"gradio>=5.
|
10 |
-
"hf-transfer>=0.1.
|
11 |
]
|
12 |
|
13 |
[tool.ruff]
|
@@ -43,5 +43,8 @@ unfixable = [
|
|
43 |
"F401", # unused-import
|
44 |
]
|
45 |
|
|
|
|
|
|
|
46 |
[tool.ruff.format]
|
47 |
docstring-code-format = true
|
|
|
6 |
requires-python = ">=3.10"
|
7 |
dependencies = [
|
8 |
"datasets>=3.2.0",
|
9 |
+
"gradio>=5.11.0",
|
10 |
+
"hf-transfer>=0.1.9",
|
11 |
]
|
12 |
|
13 |
[tool.ruff]
|
|
|
43 |
"F401", # unused-import
|
44 |
]
|
45 |
|
46 |
+
[tool.ruff.lint.per-file-ignores]
|
47 |
+
"*.ipynb" = ["T201"]
|
48 |
+
|
49 |
[tool.ruff.format]
|
50 |
docstring-code-format = true
|
requirements.txt
CHANGED
@@ -12,7 +12,7 @@ aiosignal==1.3.2
|
|
12 |
# via aiohttp
|
13 |
annotated-types==0.7.0
|
14 |
# via pydantic
|
15 |
-
anyio==4.
|
16 |
# via
|
17 |
# gradio
|
18 |
# httpx
|
@@ -57,15 +57,15 @@ fsspec==2024.9.0
|
|
57 |
# datasets
|
58 |
# gradio-client
|
59 |
# huggingface-hub
|
60 |
-
gradio==5.
|
61 |
# via mmmu-dataset-viewer (pyproject.toml)
|
62 |
-
gradio-client==1.5.
|
63 |
# via gradio
|
64 |
h11==0.14.0
|
65 |
# via
|
66 |
# httpcore
|
67 |
# uvicorn
|
68 |
-
hf-transfer==0.1.
|
69 |
# via mmmu-dataset-viewer (pyproject.toml)
|
70 |
httpcore==1.0.7
|
71 |
# via httpx
|
@@ -74,7 +74,7 @@ httpx==0.28.1
|
|
74 |
# gradio
|
75 |
# gradio-client
|
76 |
# safehttpx
|
77 |
-
huggingface-hub==0.27.
|
78 |
# via
|
79 |
# datasets
|
80 |
# gradio
|
@@ -106,7 +106,7 @@ numpy==2.2.1
|
|
106 |
# datasets
|
107 |
# gradio
|
108 |
# pandas
|
109 |
-
orjson==3.10.
|
110 |
# via gradio
|
111 |
packaging==24.2
|
112 |
# via
|
@@ -118,7 +118,7 @@ pandas==2.2.3
|
|
118 |
# via
|
119 |
# datasets
|
120 |
# gradio
|
121 |
-
pillow==11.
|
122 |
# via gradio
|
123 |
propcache==0.2.1
|
124 |
# via
|
@@ -134,7 +134,7 @@ pydantic-core==2.27.2
|
|
134 |
# via pydantic
|
135 |
pydub==0.25.1
|
136 |
# via gradio
|
137 |
-
pygments==2.
|
138 |
# via rich
|
139 |
python-dateutil==2.9.0.post0
|
140 |
# via pandas
|
@@ -153,7 +153,7 @@ requests==2.32.3
|
|
153 |
# huggingface-hub
|
154 |
rich==13.9.4
|
155 |
# via typer
|
156 |
-
ruff==0.8.
|
157 |
# via gradio
|
158 |
safehttpx==0.1.6
|
159 |
# via gradio
|
|
|
12 |
# via aiohttp
|
13 |
annotated-types==0.7.0
|
14 |
# via pydantic
|
15 |
+
anyio==4.8.0
|
16 |
# via
|
17 |
# gradio
|
18 |
# httpx
|
|
|
57 |
# datasets
|
58 |
# gradio-client
|
59 |
# huggingface-hub
|
60 |
+
gradio==5.11.0
|
61 |
# via mmmu-dataset-viewer (pyproject.toml)
|
62 |
+
gradio-client==1.5.3
|
63 |
# via gradio
|
64 |
h11==0.14.0
|
65 |
# via
|
66 |
# httpcore
|
67 |
# uvicorn
|
68 |
+
hf-transfer==0.1.9
|
69 |
# via mmmu-dataset-viewer (pyproject.toml)
|
70 |
httpcore==1.0.7
|
71 |
# via httpx
|
|
|
74 |
# gradio
|
75 |
# gradio-client
|
76 |
# safehttpx
|
77 |
+
huggingface-hub==0.27.1
|
78 |
# via
|
79 |
# datasets
|
80 |
# gradio
|
|
|
106 |
# datasets
|
107 |
# gradio
|
108 |
# pandas
|
109 |
+
orjson==3.10.14
|
110 |
# via gradio
|
111 |
packaging==24.2
|
112 |
# via
|
|
|
118 |
# via
|
119 |
# datasets
|
120 |
# gradio
|
121 |
+
pillow==11.1.0
|
122 |
# via gradio
|
123 |
propcache==0.2.1
|
124 |
# via
|
|
|
134 |
# via pydantic
|
135 |
pydub==0.25.1
|
136 |
# via gradio
|
137 |
+
pygments==2.19.1
|
138 |
# via rich
|
139 |
python-dateutil==2.9.0.post0
|
140 |
# via pandas
|
|
|
153 |
# huggingface-hub
|
154 |
rich==13.9.4
|
155 |
# via typer
|
156 |
+
ruff==0.8.6
|
157 |
# via gradio
|
158 |
safehttpx==0.1.6
|
159 |
# via gradio
|
uv.lock
CHANGED
@@ -126,7 +126,7 @@ wheels = [
|
|
126 |
|
127 |
[[package]]
|
128 |
name = "anyio"
|
129 |
-
version = "4.
|
130 |
source = { registry = "https://pypi.org/simple" }
|
131 |
dependencies = [
|
132 |
{ name = "exceptiongroup", marker = "python_full_version < '3.11'" },
|
@@ -134,9 +134,9 @@ dependencies = [
|
|
134 |
{ name = "sniffio" },
|
135 |
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
136 |
]
|
137 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
138 |
wheels = [
|
139 |
-
{ url = "https://files.pythonhosted.org/packages/
|
140 |
]
|
141 |
|
142 |
[[package]]
|
@@ -448,7 +448,7 @@ http = [
|
|
448 |
|
449 |
[[package]]
|
450 |
name = "gradio"
|
451 |
-
version = "5.
|
452 |
source = { registry = "https://pypi.org/simple" }
|
453 |
dependencies = [
|
454 |
{ name = "aiofiles" },
|
@@ -481,12 +481,12 @@ dependencies = [
|
|
481 |
{ name = "uvicorn", marker = "sys_platform != 'emscripten'" },
|
482 |
]
|
483 |
wheels = [
|
484 |
-
{ url = "https://files.pythonhosted.org/packages/
|
485 |
]
|
486 |
|
487 |
[[package]]
|
488 |
name = "gradio-client"
|
489 |
-
version = "1.5.
|
490 |
source = { registry = "https://pypi.org/simple" }
|
491 |
dependencies = [
|
492 |
{ name = "fsspec" },
|
@@ -496,9 +496,9 @@ dependencies = [
|
|
496 |
{ name = "typing-extensions" },
|
497 |
{ name = "websockets" },
|
498 |
]
|
499 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
500 |
wheels = [
|
501 |
-
{ url = "https://files.pythonhosted.org/packages/
|
502 |
]
|
503 |
|
504 |
[[package]]
|
@@ -512,39 +512,34 @@ wheels = [
|
|
512 |
|
513 |
[[package]]
|
514 |
name = "hf-transfer"
|
515 |
-
version = "0.1.
|
516 |
-
source = { registry = "https://pypi.org/simple" }
|
517 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
518 |
-
wheels = [
|
519 |
-
{ url = "https://files.pythonhosted.org/packages/
|
520 |
-
{ url = "https://files.pythonhosted.org/packages/
|
521 |
-
{ url = "https://files.pythonhosted.org/packages/
|
522 |
-
{ url = "https://files.pythonhosted.org/packages/
|
523 |
-
{ url = "https://files.pythonhosted.org/packages/
|
524 |
-
{ url = "https://files.pythonhosted.org/packages/
|
525 |
-
{ url = "https://files.pythonhosted.org/packages/
|
526 |
-
{ url = "https://files.pythonhosted.org/packages/
|
527 |
-
{ url = "https://files.pythonhosted.org/packages/
|
528 |
-
{ url = "https://files.pythonhosted.org/packages/
|
529 |
-
{ url = "https://files.pythonhosted.org/packages/
|
530 |
-
{ url = "https://files.pythonhosted.org/packages/
|
531 |
-
{ url = "https://files.pythonhosted.org/packages/
|
532 |
-
{ url = "https://files.pythonhosted.org/packages/
|
533 |
-
{ url = "https://files.pythonhosted.org/packages/
|
534 |
-
{ url = "https://files.pythonhosted.org/packages/
|
535 |
-
{ url = "https://files.pythonhosted.org/packages/
|
536 |
-
{ url = "https://files.pythonhosted.org/packages/
|
537 |
-
{ url = "https://files.pythonhosted.org/packages/
|
538 |
-
{ url = "https://files.pythonhosted.org/packages/
|
539 |
-
{ url = "https://files.pythonhosted.org/packages/
|
540 |
-
{ url = "https://files.pythonhosted.org/packages/
|
541 |
-
{ url = "https://files.pythonhosted.org/packages/
|
542 |
-
{ url = "https://files.pythonhosted.org/packages/
|
543 |
-
{ url = "https://files.pythonhosted.org/packages/37/7f/914b684779dae9d2db4cdb6efa50426da7411754d820b8ddc9c10eef5042/hf_transfer-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:060c661691f85a61392e57579c80eb64b5ee277434e81fb582f605c1c8ff05d5", size = 3560705 },
|
544 |
-
{ url = "https://files.pythonhosted.org/packages/de/17/e9ff11be0ab52d113091462f65fa280bd5c04c80e5b1dadb7f8de9645848/hf_transfer-0.1.8-cp312-none-win32.whl", hash = "sha256:f7840e32379820c3e1571a480238e05ea043e970c99d2e999578004a2eb17788", size = 1130448 },
|
545 |
-
{ url = "https://files.pythonhosted.org/packages/58/60/04c18bbeb46cc2dc6fd237323c03f2e4c700bca122f28567dbb344ff5bab/hf_transfer-0.1.8-cp312-none-win_amd64.whl", hash = "sha256:9a3204ec423cc5e659872e8179f8704ad9ce2abb1e6a991f8838aedf1dc07830", size = 1206317 },
|
546 |
-
{ url = "https://files.pythonhosted.org/packages/ae/e1/647dbd310042c11638ef330060777084f3394a82adc8274624b0f0601198/hf_transfer-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:928ff036c3e98e10dcfbdb4fcdfc4592d37a5cc8e365a7ba8dfd4337e849d675", size = 3591149 },
|
547 |
-
{ url = "https://files.pythonhosted.org/packages/13/c4/aaf060b26e720a7b4cb90d7f02dc18a56b18894cbd72fb610f75b11fb9dc/hf_transfer-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d49ba3ce67035f460ae1924fe2feafec155cb535eec7f31ed5109c19064cd294", size = 3564510 },
|
548 |
]
|
549 |
|
550 |
[[package]]
|
@@ -577,7 +572,7 @@ wheels = [
|
|
577 |
|
578 |
[[package]]
|
579 |
name = "huggingface-hub"
|
580 |
-
version = "0.27.
|
581 |
source = { registry = "https://pypi.org/simple" }
|
582 |
dependencies = [
|
583 |
{ name = "filelock" },
|
@@ -588,9 +583,9 @@ dependencies = [
|
|
588 |
{ name = "tqdm" },
|
589 |
{ name = "typing-extensions" },
|
590 |
]
|
591 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
592 |
wheels = [
|
593 |
-
{ url = "https://files.pythonhosted.org/packages/
|
594 |
]
|
595 |
|
596 |
[[package]]
|
@@ -686,8 +681,8 @@ dependencies = [
|
|
686 |
[package.metadata]
|
687 |
requires-dist = [
|
688 |
{ name = "datasets", specifier = ">=3.2.0" },
|
689 |
-
{ name = "gradio", specifier = ">=5.
|
690 |
-
{ name = "hf-transfer", specifier = ">=0.1.
|
691 |
]
|
692 |
|
693 |
[[package]]
|
@@ -844,58 +839,58 @@ wheels = [
|
|
844 |
|
845 |
[[package]]
|
846 |
name = "orjson"
|
847 |
-
version = "3.10.
|
848 |
-
source = { registry = "https://pypi.org/simple" }
|
849 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
850 |
-
wheels = [
|
851 |
-
{ url = "https://files.pythonhosted.org/packages/
|
852 |
-
{ url = "https://files.pythonhosted.org/packages/9f/
|
853 |
-
{ url = "https://files.pythonhosted.org/packages/
|
854 |
-
{ url = "https://files.pythonhosted.org/packages/
|
855 |
-
{ url = "https://files.pythonhosted.org/packages/
|
856 |
-
{ url = "https://files.pythonhosted.org/packages/
|
857 |
-
{ url = "https://files.pythonhosted.org/packages/
|
858 |
-
{ url = "https://files.pythonhosted.org/packages/
|
859 |
-
{ url = "https://files.pythonhosted.org/packages/
|
860 |
-
{ url = "https://files.pythonhosted.org/packages/
|
861 |
-
{ url = "https://files.pythonhosted.org/packages/
|
862 |
-
{ url = "https://files.pythonhosted.org/packages/
|
863 |
-
{ url = "https://files.pythonhosted.org/packages/
|
864 |
-
{ url = "https://files.pythonhosted.org/packages/
|
865 |
-
{ url = "https://files.pythonhosted.org/packages/
|
866 |
-
{ url = "https://files.pythonhosted.org/packages/
|
867 |
-
{ url = "https://files.pythonhosted.org/packages/
|
868 |
-
{ url = "https://files.pythonhosted.org/packages/
|
869 |
-
{ url = "https://files.pythonhosted.org/packages/
|
870 |
-
{ url = "https://files.pythonhosted.org/packages/
|
871 |
-
{ url = "https://files.pythonhosted.org/packages/
|
872 |
-
{ url = "https://files.pythonhosted.org/packages/
|
873 |
-
{ url = "https://files.pythonhosted.org/packages/
|
874 |
-
{ url = "https://files.pythonhosted.org/packages/
|
875 |
-
{ url = "https://files.pythonhosted.org/packages/
|
876 |
-
{ url = "https://files.pythonhosted.org/packages/
|
877 |
-
{ url = "https://files.pythonhosted.org/packages/
|
878 |
-
{ url = "https://files.pythonhosted.org/packages/
|
879 |
-
{ url = "https://files.pythonhosted.org/packages/39/
|
880 |
-
{ url = "https://files.pythonhosted.org/packages/
|
881 |
-
{ url = "https://files.pythonhosted.org/packages/
|
882 |
-
{ url = "https://files.pythonhosted.org/packages/
|
883 |
-
{ url = "https://files.pythonhosted.org/packages/
|
884 |
-
{ url = "https://files.pythonhosted.org/packages/
|
885 |
-
{ url = "https://files.pythonhosted.org/packages/
|
886 |
-
{ url = "https://files.pythonhosted.org/packages/
|
887 |
-
{ url = "https://files.pythonhosted.org/packages/
|
888 |
-
{ url = "https://files.pythonhosted.org/packages/
|
889 |
-
{ url = "https://files.pythonhosted.org/packages/
|
890 |
-
{ url = "https://files.pythonhosted.org/packages/
|
891 |
-
{ url = "https://files.pythonhosted.org/packages/
|
892 |
-
{ url = "https://files.pythonhosted.org/packages/
|
893 |
-
{ url = "https://files.pythonhosted.org/packages/
|
894 |
-
{ url = "https://files.pythonhosted.org/packages/
|
895 |
-
{ url = "https://files.pythonhosted.org/packages/
|
896 |
-
{ url = "https://files.pythonhosted.org/packages/
|
897 |
-
{ url = "https://files.pythonhosted.org/packages/
|
898 |
-
{ url = "https://files.pythonhosted.org/packages/
|
899 |
]
|
900 |
|
901 |
[[package]]
|
@@ -957,69 +952,69 @@ wheels = [
|
|
957 |
|
958 |
[[package]]
|
959 |
name = "pillow"
|
960 |
-
version = "11.
|
961 |
-
source = { registry = "https://pypi.org/simple" }
|
962 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
963 |
-
wheels = [
|
964 |
-
{ url = "https://files.pythonhosted.org/packages/
|
965 |
-
{ url = "https://files.pythonhosted.org/packages/
|
966 |
-
{ url = "https://files.pythonhosted.org/packages/
|
967 |
-
{ url = "https://files.pythonhosted.org/packages/
|
968 |
-
{ url = "https://files.pythonhosted.org/packages/
|
969 |
-
{ url = "https://files.pythonhosted.org/packages/
|
970 |
-
{ url = "https://files.pythonhosted.org/packages/
|
971 |
-
{ url = "https://files.pythonhosted.org/packages/
|
972 |
-
{ url = "https://files.pythonhosted.org/packages/
|
973 |
-
{ url = "https://files.pythonhosted.org/packages/
|
974 |
-
{ url = "https://files.pythonhosted.org/packages/
|
975 |
-
{ url = "https://files.pythonhosted.org/packages/
|
976 |
-
{ url = "https://files.pythonhosted.org/packages/
|
977 |
-
{ url = "https://files.pythonhosted.org/packages/
|
978 |
-
{ url = "https://files.pythonhosted.org/packages/
|
979 |
-
{ url = "https://files.pythonhosted.org/packages/
|
980 |
-
{ url = "https://files.pythonhosted.org/packages/
|
981 |
-
{ url = "https://files.pythonhosted.org/packages/
|
982 |
-
{ url = "https://files.pythonhosted.org/packages/
|
983 |
-
{ url = "https://files.pythonhosted.org/packages/
|
984 |
-
{ url = "https://files.pythonhosted.org/packages/
|
985 |
-
{ url = "https://files.pythonhosted.org/packages/52/
|
986 |
-
{ url = "https://files.pythonhosted.org/packages/
|
987 |
-
{ url = "https://files.pythonhosted.org/packages/
|
988 |
-
{ url = "https://files.pythonhosted.org/packages/d9/
|
989 |
-
{ url = "https://files.pythonhosted.org/packages/
|
990 |
-
{ url = "https://files.pythonhosted.org/packages/
|
991 |
-
{ url = "https://files.pythonhosted.org/packages/
|
992 |
-
{ url = "https://files.pythonhosted.org/packages/
|
993 |
-
{ url = "https://files.pythonhosted.org/packages/
|
994 |
-
{ url = "https://files.pythonhosted.org/packages/
|
995 |
-
{ url = "https://files.pythonhosted.org/packages/
|
996 |
-
{ url = "https://files.pythonhosted.org/packages/
|
997 |
-
{ url = "https://files.pythonhosted.org/packages/
|
998 |
-
{ url = "https://files.pythonhosted.org/packages/
|
999 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1000 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1001 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1002 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1003 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1004 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1005 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1006 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1007 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1008 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1009 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1010 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1011 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1012 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1013 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1014 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1015 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1016 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1017 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1018 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1019 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1020 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1021 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1022 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1023 |
]
|
1024 |
|
1025 |
[[package]]
|
@@ -1237,11 +1232,11 @@ wheels = [
|
|
1237 |
|
1238 |
[[package]]
|
1239 |
name = "pygments"
|
1240 |
-
version = "2.
|
1241 |
source = { registry = "https://pypi.org/simple" }
|
1242 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1243 |
wheels = [
|
1244 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1245 |
]
|
1246 |
|
1247 |
[[package]]
|
@@ -1349,27 +1344,27 @@ wheels = [
|
|
1349 |
|
1350 |
[[package]]
|
1351 |
name = "ruff"
|
1352 |
-
version = "0.8.
|
1353 |
-
source = { registry = "https://pypi.org/simple" }
|
1354 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1355 |
-
wheels = [
|
1356 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1357 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1358 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1359 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1360 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1361 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1362 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1363 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1364 |
-
{ url = "https://files.pythonhosted.org/packages/ef/
|
1365 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1366 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1367 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1368 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1369 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1370 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1371 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1372 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1373 |
]
|
1374 |
|
1375 |
[[package]]
|
|
|
126 |
|
127 |
[[package]]
|
128 |
name = "anyio"
|
129 |
+
version = "4.8.0"
|
130 |
source = { registry = "https://pypi.org/simple" }
|
131 |
dependencies = [
|
132 |
{ name = "exceptiongroup", marker = "python_full_version < '3.11'" },
|
|
|
134 |
{ name = "sniffio" },
|
135 |
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
136 |
]
|
137 |
+
sdist = { url = "https://files.pythonhosted.org/packages/a3/73/199a98fc2dae33535d6b8e8e6ec01f8c1d76c9adb096c6b7d64823038cde/anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a", size = 181126 }
|
138 |
wheels = [
|
139 |
+
{ url = "https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a", size = 96041 },
|
140 |
]
|
141 |
|
142 |
[[package]]
|
|
|
448 |
|
449 |
[[package]]
|
450 |
name = "gradio"
|
451 |
+
version = "5.11.0"
|
452 |
source = { registry = "https://pypi.org/simple" }
|
453 |
dependencies = [
|
454 |
{ name = "aiofiles" },
|
|
|
481 |
{ name = "uvicorn", marker = "sys_platform != 'emscripten'" },
|
482 |
]
|
483 |
wheels = [
|
484 |
+
{ url = "https://files.pythonhosted.org/packages/83/f5/3d7dc4b1837994606ce7de560e898ccf423dd25e84b673eebfac6c7a352a/gradio-5.11.0-py3-none-any.whl", hash = "sha256:0b8fdb90ceaad2bb8bb7aecb3ad5b05d3020945eb6162fb779c6c09525f94082", size = 57547766 },
|
485 |
]
|
486 |
|
487 |
[[package]]
|
488 |
name = "gradio-client"
|
489 |
+
version = "1.5.3"
|
490 |
source = { registry = "https://pypi.org/simple" }
|
491 |
dependencies = [
|
492 |
{ name = "fsspec" },
|
|
|
496 |
{ name = "typing-extensions" },
|
497 |
{ name = "websockets" },
|
498 |
]
|
499 |
+
sdist = { url = "https://files.pythonhosted.org/packages/76/96/5e608d0aeb91d341018789556d77321d35a1b08c357dca74d02e444b8499/gradio_client-1.5.3.tar.gz", hash = "sha256:f2b41278d1c7748b1060b6f97cde6660535baabc946031d0485890dba9855727", size = 318781 }
|
500 |
wheels = [
|
501 |
+
{ url = "https://files.pythonhosted.org/packages/30/f5/a241cdfb73f606132f5651b5561feec70a59b6931de7aba28e02e9209e51/gradio_client-1.5.3-py3-none-any.whl", hash = "sha256:50f8ab48f7c4eccdb4c25030343271511391acbde5fbf64fcd03bada56dc8ee9", size = 320632 },
|
502 |
]
|
503 |
|
504 |
[[package]]
|
|
|
512 |
|
513 |
[[package]]
|
514 |
name = "hf-transfer"
|
515 |
+
version = "0.1.9"
|
516 |
+
source = { registry = "https://pypi.org/simple" }
|
517 |
+
sdist = { url = "https://files.pythonhosted.org/packages/1a/eb/8fc64f40388c29ce8ce3b2b180a089d4d6b25b1d0d232d016704cb852104/hf_transfer-0.1.9.tar.gz", hash = "sha256:035572865dab29d17e783fbf1e84cf1cb24f3fcf8f1b17db1cfc7fdf139f02bf", size = 25201 }
|
518 |
+
wheels = [
|
519 |
+
{ url = "https://files.pythonhosted.org/packages/a4/78/0dce00208f585fae675f40033ef9a30dedfa83665d5ac79f16beb4a0a6c2/hf_transfer-0.1.9-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:6e94e8822da79573c9b6ae4d6b2f847c59a7a06c5327d7db20751b68538dc4f6", size = 1386084 },
|
520 |
+
{ url = "https://files.pythonhosted.org/packages/ea/2e/3d60b1a9e9f29a2152aa66c823bf5e399ae7be3fef310ff0de86779c5d2d/hf_transfer-0.1.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3ebc4ab9023414880c8b1d3c38174d1c9989eb5022d37e814fa91a3060123eb0", size = 1343558 },
|
521 |
+
{ url = "https://files.pythonhosted.org/packages/fb/38/130a5ac3747f104033591bcac1c961cb1faadfdc91704f59b09c0b465ff2/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8674026f21ed369aa2a0a4b46000aca850fc44cd2b54af33a172ce5325b4fc82", size = 3726676 },
|
522 |
+
{ url = "https://files.pythonhosted.org/packages/15/a1/f4e27c5ad17aac616ae0849e2aede5aae31db8267a948c6b3eeb9fd96446/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3a736dfbb2c84f5a2c975478ad200c0c8bfcb58a25a35db402678fb87ce17fa4", size = 3062920 },
|
523 |
+
{ url = "https://files.pythonhosted.org/packages/8d/0d/727abdfba39bc3f1132cfa4c970588c2c0bb0d82fe2d645cc10f4e2f8e0b/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:504b8427fd785dd8546d53b9fafe6e436bd7a3adf76b9dce556507650a7b4567", size = 3578681 },
|
524 |
+
{ url = "https://files.pythonhosted.org/packages/50/d0/2b213eb1ea8b1252ccaf1a6c804d0aba03fea38aae4124df6a3acb70511a/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c7fc1b85f4d0f76e452765d7648c9f4bfd0aedb9ced2ae1ebfece2d8cfaf8e2", size = 3398837 },
|
525 |
+
{ url = "https://files.pythonhosted.org/packages/8c/8a/79dbce9006e0bd6b74516f97451a7b7c64dbbb426df15d901dd438cfeee3/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d991376f0eac70a60f0cbc95602aa708a6f7c8617f28b4945c1431d67b8e3c8", size = 3546986 },
|
526 |
+
{ url = "https://files.pythonhosted.org/packages/a9/f7/9ac239b6ee6fe0bad130325d987a93ea58c4118e50479f0786f1733b37e8/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e6ac4eddcd99575ed3735ed911ddf9d1697e2bd13aa3f0ad7e3904dd4863842e", size = 4071715 },
|
527 |
+
{ url = "https://files.pythonhosted.org/packages/d8/a3/0ed697279f5eeb7a40f279bd783cf50e6d0b91f24120dcf66ef2cf8822b4/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:57fd9880da1ee0f47250f735f791fab788f0aa1ee36afc49f761349869c8b4d9", size = 3388081 },
|
528 |
+
{ url = "https://files.pythonhosted.org/packages/dc/eb/47e477bdf1d784f31c7540db6cc8c354b777e51a186897a7abda34517f36/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:5d561f0520f493c66b016d99ceabe69c23289aa90be38dd802d2aef279f15751", size = 3658654 },
|
529 |
+
{ url = "https://files.pythonhosted.org/packages/45/07/6661e43fbee09594a8a5e9bb778107d95fe38dac4c653982afe03d32bd4d/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a5b366d34cd449fe9b20ef25941e6eef0460a2f74e7389f02e673e1f88ebd538", size = 3690551 },
|
530 |
+
{ url = "https://files.pythonhosted.org/packages/81/f5/461d2e5f307e5048289b1168d5c642ae3bb2504e88dff1a38b92ed990a21/hf_transfer-0.1.9-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:e66acf91df4a8b72f60223059df3003062a5ae111757187ed1a06750a30e911b", size = 1393046 },
|
531 |
+
{ url = "https://files.pythonhosted.org/packages/41/ba/8d9fd9f1083525edfcb389c93738c802f3559cb749324090d7109c8bf4c2/hf_transfer-0.1.9-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:8669dbcc7a3e2e8d61d42cd24da9c50d57770bd74b445c65123291ca842a7e7a", size = 1348126 },
|
532 |
+
{ url = "https://files.pythonhosted.org/packages/8e/a2/cd7885bc9959421065a6fae0fe67b6c55becdeda4e69b873e52976f9a9f0/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8fd0167c4407a3bc4cdd0307e65ada2294ec04f1813d8a69a5243e379b22e9d8", size = 3728604 },
|
533 |
+
{ url = "https://files.pythonhosted.org/packages/f6/2e/a072cf196edfeda3310c9a5ade0a0fdd785e6154b3ce24fc738c818da2a7/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee8b10afedcb75f71091bcc197c526a6ebf5c58bbbadb34fdeee6160f55f619f", size = 3064995 },
|
534 |
+
{ url = "https://files.pythonhosted.org/packages/c2/84/aec9ef4c0fab93c1ea2b1badff38c78b4b2f86f0555b26d2051dbc920cde/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5828057e313de59300dd1abb489444bc452efe3f479d3c55b31a8f680936ba42", size = 3580908 },
|
535 |
+
{ url = "https://files.pythonhosted.org/packages/29/63/b560d39651a56603d64f1a0212d0472a44cbd965db2fa62b99d99cb981bf/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc6bd19e1cc177c66bdef15ef8636ad3bde79d5a4f608c158021153b4573509d", size = 3400839 },
|
536 |
+
{ url = "https://files.pythonhosted.org/packages/d6/d8/f87ea6f42456254b48915970ed98e993110521e9263472840174d32c880d/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdca9bfb89e6f8f281890cc61a8aff2d3cecaff7e1a4d275574d96ca70098557", size = 3552664 },
|
537 |
+
{ url = "https://files.pythonhosted.org/packages/d6/56/1267c39b65fc8f4e2113b36297320f102718bf5799b544a6cbe22013aa1d/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:89a23f58b7b7effbc047b8ca286f131b17728c99a9f972723323003ffd1bb916", size = 4073732 },
|
538 |
+
{ url = "https://files.pythonhosted.org/packages/82/1a/9c748befbe3decf7cb415e34f8a0c3789a0a9c55910dea73d581e48c0ce5/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:dc7fff1345980d6c0ebb92c811d24afa4b98b3e07ed070c8e38cc91fd80478c5", size = 3390096 },
|
539 |
+
{ url = "https://files.pythonhosted.org/packages/72/85/4c03da147b6b4b7cb12e074d3d44eee28604a387ed0eaf7eaaead5069c57/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:1a6bd16c667ebe89a069ca163060127a794fa3a3525292c900b8c8cc47985b0d", size = 3664743 },
|
540 |
+
{ url = "https://files.pythonhosted.org/packages/e7/6e/e597b04f753f1b09e6893075d53a82a30c13855cbaa791402695b01e369f/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d2fde99d502093ade3ab1b53f80da18480e9902aa960dab7f74fb1b9e5bc5746", size = 3695243 },
|
541 |
+
{ url = "https://files.pythonhosted.org/packages/09/89/d4e234727a26b2546c8fb70a276cd924260d60135f2165bf8b9ed67bb9a4/hf_transfer-0.1.9-cp38-abi3-win32.whl", hash = "sha256:435cc3cdc8524ce57b074032b8fd76eed70a4224d2091232fa6a8cef8fd6803e", size = 1086605 },
|
542 |
+
{ url = "https://files.pythonhosted.org/packages/a1/14/f1e15b851d1c2af5b0b1a82bf8eb10bda2da62d98180220ba6fd8879bb5b/hf_transfer-0.1.9-cp38-abi3-win_amd64.whl", hash = "sha256:16f208fc678911c37e11aa7b586bc66a37d02e636208f18b6bc53d29b5df40ad", size = 1160240 },
|
|
|
|
|
|
|
|
|
|
|
543 |
]
|
544 |
|
545 |
[[package]]
|
|
|
572 |
|
573 |
[[package]]
|
574 |
name = "huggingface-hub"
|
575 |
+
version = "0.27.1"
|
576 |
source = { registry = "https://pypi.org/simple" }
|
577 |
dependencies = [
|
578 |
{ name = "filelock" },
|
|
|
583 |
{ name = "tqdm" },
|
584 |
{ name = "typing-extensions" },
|
585 |
]
|
586 |
+
sdist = { url = "https://files.pythonhosted.org/packages/e1/d2/d6976de7542792fc077b498d64af64882b6d8bb40679284ec0bff77d5929/huggingface_hub-0.27.1.tar.gz", hash = "sha256:c004463ca870283909d715d20f066ebd6968c2207dae9393fdffb3c1d4d8f98b", size = 379407 }
|
587 |
wheels = [
|
588 |
+
{ url = "https://files.pythonhosted.org/packages/6c/3f/50f6b25fafdcfb1c089187a328c95081abf882309afd86f4053951507cd1/huggingface_hub-0.27.1-py3-none-any.whl", hash = "sha256:1c5155ca7d60b60c2e2fc38cbb3ffb7f7c3adf48f824015b219af9061771daec", size = 450658 },
|
589 |
]
|
590 |
|
591 |
[[package]]
|
|
|
681 |
[package.metadata]
|
682 |
requires-dist = [
|
683 |
{ name = "datasets", specifier = ">=3.2.0" },
|
684 |
+
{ name = "gradio", specifier = ">=5.11.0" },
|
685 |
+
{ name = "hf-transfer", specifier = ">=0.1.9" },
|
686 |
]
|
687 |
|
688 |
[[package]]
|
|
|
839 |
|
840 |
[[package]]
|
841 |
name = "orjson"
|
842 |
+
version = "3.10.14"
|
843 |
+
source = { registry = "https://pypi.org/simple" }
|
844 |
+
sdist = { url = "https://files.pythonhosted.org/packages/92/f7/3219b56f47b4f5e864fb11cdf4ac0aaa3de608730ad2dc4c6e16382f35ec/orjson-3.10.14.tar.gz", hash = "sha256:cf31f6f071a6b8e7aa1ead1fa27b935b48d00fbfa6a28ce856cfff2d5dd68eed", size = 5282116 }
|
845 |
+
wheels = [
|
846 |
+
{ url = "https://files.pythonhosted.org/packages/b3/62/64348b8b29a14c7342f6aa45c8be0a87fdda2ce7716bc123717376537077/orjson-3.10.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:849ea7845a55f09965826e816cdc7689d6cf74fe9223d79d758c714af955bcb6", size = 249439 },
|
847 |
+
{ url = "https://files.pythonhosted.org/packages/9f/51/48f4dfbca7b4db630316b170db4a150a33cd405650258bd62a2d619b43b4/orjson-3.10.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5947b139dfa33f72eecc63f17e45230a97e741942955a6c9e650069305eb73d", size = 135811 },
|
848 |
+
{ url = "https://files.pythonhosted.org/packages/a1/1c/e18770843e6d045605c8e00a1be801da5668fa934b323b0492a49c9dee4f/orjson-3.10.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cde6d76910d3179dae70f164466692f4ea36da124d6fb1a61399ca589e81d69a", size = 150154 },
|
849 |
+
{ url = "https://files.pythonhosted.org/packages/51/1e/3817dc79164f1fc17fc53102f74f62d31f5f4ec042abdd24d94c5e06e51c/orjson-3.10.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c6dfbaeb7afa77ca608a50e2770a0461177b63a99520d4928e27591b142c74b1", size = 139740 },
|
850 |
+
{ url = "https://files.pythonhosted.org/packages/ff/fc/fbf9e25448f7a2d67c1a2b6dad78a9340666bf9fda3339ff59b1e93f0b6f/orjson-3.10.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa45e489ef80f28ff0e5ba0a72812b8cfc7c1ef8b46a694723807d1b07c89ebb", size = 154479 },
|
851 |
+
{ url = "https://files.pythonhosted.org/packages/d4/df/c8b7ea21ff658f6a9a26d562055631c01d445bda5eb613c02c7d0934607d/orjson-3.10.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5007abfdbb1d866e2aa8990bd1c465f0f6da71d19e695fc278282be12cffa5", size = 130414 },
|
852 |
+
{ url = "https://files.pythonhosted.org/packages/df/f7/e29c2d42bef8fbf696a5e54e6339b0b9ea5179326950fee6ae80acf59d09/orjson-3.10.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1b49e2af011c84c3f2d541bb5cd1e3c7c2df672223e7e3ea608f09cf295e5f8a", size = 138545 },
|
853 |
+
{ url = "https://files.pythonhosted.org/packages/8e/97/afdf2908fe8eaeecb29e97fa82dc934f275acf330e5271def0b8fbac5478/orjson-3.10.14-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:164ac155109226b3a2606ee6dda899ccfbe6e7e18b5bdc3fbc00f79cc074157d", size = 130952 },
|
854 |
+
{ url = "https://files.pythonhosted.org/packages/4a/dd/04e01c1305694f47e9794c60ec7cece02e55fa9d57c5d72081eaaa62ad1d/orjson-3.10.14-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:6b1225024cf0ef5d15934b5ffe9baf860fe8bc68a796513f5ea4f5056de30bca", size = 414673 },
|
855 |
+
{ url = "https://files.pythonhosted.org/packages/fa/12/28c4d5f6a395ac9693b250f0662366968c47fc99c8f3cd803a65b1f5ba46/orjson-3.10.14-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d6546e8073dc382e60fcae4a001a5a1bc46da5eab4a4878acc2d12072d6166d5", size = 141002 },
|
856 |
+
{ url = "https://files.pythonhosted.org/packages/21/f6/357cb167c2d2fd9542251cfd9f68681b67ed4dcdac82aa6ee2f4f3ab952e/orjson-3.10.14-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9f1d2942605c894162252d6259b0121bf1cb493071a1ea8cb35d79cb3e6ac5bc", size = 129626 },
|
857 |
+
{ url = "https://files.pythonhosted.org/packages/df/07/d9062353500df9db8bfa7c6a5982687c97d0b69a5b158c4166d407ac94e2/orjson-3.10.14-cp310-cp310-win32.whl", hash = "sha256:397083806abd51cf2b3bbbf6c347575374d160331a2d33c5823e22249ad3118b", size = 142429 },
|
858 |
+
{ url = "https://files.pythonhosted.org/packages/50/ba/6ba2bf69ac0526d143aebe78bc39e6e5fbb51d5336fbc5efb9aab6687cd9/orjson-3.10.14-cp310-cp310-win_amd64.whl", hash = "sha256:fa18f949d3183a8d468367056be989666ac2bef3a72eece0bade9cdb733b3c28", size = 133512 },
|
859 |
+
{ url = "https://files.pythonhosted.org/packages/bf/18/26721760368e12b691fb6811692ed21ae5275ea918db409ba26866cacbe8/orjson-3.10.14-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f506fd666dd1ecd15a832bebc66c4df45c1902fd47526292836c339f7ba665a9", size = 249437 },
|
860 |
+
{ url = "https://files.pythonhosted.org/packages/d5/5b/2adfe7cc301edeb3bffc1942956659c19ec00d51a21c53c17c0767bebf47/orjson-3.10.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efe5fd254cfb0eeee13b8ef7ecb20f5d5a56ddda8a587f3852ab2cedfefdb5f6", size = 135812 },
|
861 |
+
{ url = "https://files.pythonhosted.org/packages/8a/68/07df7787fd9ff6dba815b2d793eec5e039d288fdf150431ed48a660bfcbb/orjson-3.10.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4ddc8c866d7467f5ee2991397d2ea94bcf60d0048bdd8ca555740b56f9042725", size = 150153 },
|
862 |
+
{ url = "https://files.pythonhosted.org/packages/02/71/f68562734461b801b53bacd5365e079dcb3c78656a662f0639494880e522/orjson-3.10.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3af8e42ae4363773658b8d578d56dedffb4f05ceeb4d1d4dd3fb504950b45526", size = 139742 },
|
863 |
+
{ url = "https://files.pythonhosted.org/packages/04/03/1355fb27652582f00d3c62e93a32b982fa42bc31d2e07f0a317867069096/orjson-3.10.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84dd83110503bc10e94322bf3ffab8bc49150176b49b4984dc1cce4c0a993bf9", size = 154479 },
|
864 |
+
{ url = "https://files.pythonhosted.org/packages/7c/47/1c2a840f27715e8bc2bbafffc851512ede6e53483593eded190919bdcaf4/orjson-3.10.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36f5bfc0399cd4811bf10ec7a759c7ab0cd18080956af8ee138097d5b5296a95", size = 130413 },
|
865 |
+
{ url = "https://files.pythonhosted.org/packages/dd/b2/5bb51006cbae85b052d1bbee7ff43ae26fa155bb3d31a71b0c07d384d5e3/orjson-3.10.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:868943660fb2a1e6b6b965b74430c16a79320b665b28dd4511d15ad5038d37d5", size = 138545 },
|
866 |
+
{ url = "https://files.pythonhosted.org/packages/79/30/7841a5dd46bb46b8e868791d5469c9d4788d3e26b7e69d40256647997baf/orjson-3.10.14-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33449c67195969b1a677533dee9d76e006001213a24501333624623e13c7cc8e", size = 130953 },
|
867 |
+
{ url = "https://files.pythonhosted.org/packages/08/49/720e7c2040c0f1df630a36d83d449bd7e4d4471071d5ece47a4f7211d570/orjson-3.10.14-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:e4c9f60f9fb0b5be66e416dcd8c9d94c3eabff3801d875bdb1f8ffc12cf86905", size = 414675 },
|
868 |
+
{ url = "https://files.pythonhosted.org/packages/50/b0/ca7619f34280e7dcbd50dbc9c5fe5200c12cd7269b8858652beb3887483f/orjson-3.10.14-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0de4d6315cfdbd9ec803b945c23b3a68207fd47cbe43626036d97e8e9561a436", size = 141004 },
|
869 |
+
{ url = "https://files.pythonhosted.org/packages/75/1b/7548e3a711543f438e87a4349e00439ab7f37807942e5659f29363f35765/orjson-3.10.14-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:83adda3db595cb1a7e2237029b3249c85afbe5c747d26b41b802e7482cb3933e", size = 129629 },
|
870 |
+
{ url = "https://files.pythonhosted.org/packages/b0/1e/4930a6ff46debd6be1ff18e869b7bc43a7ad762c865610b7e745038d6f68/orjson-3.10.14-cp311-cp311-win32.whl", hash = "sha256:998019ef74a4997a9d741b1473533cdb8faa31373afc9849b35129b4b8ec048d", size = 142430 },
|
871 |
+
{ url = "https://files.pythonhosted.org/packages/28/e0/6cc1cd1dfde36555e81ac869f7847e86bb11c27f97b72fde2f1509b12163/orjson-3.10.14-cp311-cp311-win_amd64.whl", hash = "sha256:9d034abdd36f0f0f2240f91492684e5043d46f290525d1117712d5b8137784eb", size = 133516 },
|
872 |
+
{ url = "https://files.pythonhosted.org/packages/8c/dc/dc5a882be016ee8688bd867ad3b4e3b2ab039d91383099702301a1adb6ac/orjson-3.10.14-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:2ad4b7e367efba6dc3f119c9a0fcd41908b7ec0399a696f3cdea7ec477441b09", size = 249396 },
|
873 |
+
{ url = "https://files.pythonhosted.org/packages/f0/95/4c23ff5c0505cd687928608e0b7910ccb44ce59490079e1c17b7610aa0d0/orjson-3.10.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f496286fc85e93ce0f71cc84fc1c42de2decf1bf494094e188e27a53694777a7", size = 135689 },
|
874 |
+
{ url = "https://files.pythonhosted.org/packages/ad/39/b4bdd19604dce9d6509c4d86e8e251a1373a24204b4c4169866dcecbe5f5/orjson-3.10.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c7f189bbfcded40e41a6969c1068ba305850ba016665be71a217918931416fbf", size = 150136 },
|
875 |
+
{ url = "https://files.pythonhosted.org/packages/1d/92/7b9bad96353abd3e89947960252dcf1022ce2df7f29056e434de05e18b6d/orjson-3.10.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8cc8204f0b75606869c707da331058ddf085de29558b516fc43c73ee5ee2aadb", size = 139766 },
|
876 |
+
{ url = "https://files.pythonhosted.org/packages/a6/bd/abb13c86540b7a91b40d7d9f8549d03a026bc22d78fa93f71d68b8f4c36e/orjson-3.10.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deaa2899dff7f03ab667e2ec25842d233e2a6a9e333efa484dfe666403f3501c", size = 154533 },
|
877 |
+
{ url = "https://files.pythonhosted.org/packages/c0/02/0bcb91ec9c7143012359983aca44f567f87df379957cd4af11336217b12f/orjson-3.10.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1c3ea52642c9714dc6e56de8a451a066f6d2707d273e07fe8a9cc1ba073813d", size = 130658 },
|
878 |
+
{ url = "https://files.pythonhosted.org/packages/b4/1e/b304596bb1f800d47d6e92305bd09f0eef693ed4f7b2095db63f9808b229/orjson-3.10.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9d3f9ed72e7458ded9a1fb1b4d4ed4c4fdbaf82030ce3f9274b4dc1bff7ace2b", size = 138546 },
|
879 |
+
{ url = "https://files.pythonhosted.org/packages/56/c7/65d72b22080186ef618a46afeb9386e20056f3237664090f3a2f8da1cd6d/orjson-3.10.14-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:07520685d408a2aba514c17ccc16199ff2934f9f9e28501e676c557f454a37fe", size = 130774 },
|
880 |
+
{ url = "https://files.pythonhosted.org/packages/4d/85/1ab35a832f32b37ccd673721e845cf302f23453603112255af611c91d1d1/orjson-3.10.14-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:76344269b550ea01488d19a2a369ab572c1ac4449a72e9f6ac0d70eb1cbfb953", size = 414649 },
|
881 |
+
{ url = "https://files.pythonhosted.org/packages/d1/7d/1d6575f779bab8fe698fa6d52e8aa3aa0a9fca4885d0bf6197700455713a/orjson-3.10.14-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e2979d0f2959990620f7e62da6cd954e4620ee815539bc57a8ae46e2dacf90e3", size = 141060 },
|
882 |
+
{ url = "https://files.pythonhosted.org/packages/f8/26/68513e28b3bd1d7633318ed2818e86d1bfc8b782c87c520c7b363092837f/orjson-3.10.14-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:03f61ca3674555adcb1aa717b9fc87ae936aa7a63f6aba90a474a88701278780", size = 129798 },
|
883 |
+
{ url = "https://files.pythonhosted.org/packages/44/ca/020fb99c98ff7267ba18ce798ff0c8c3aa97cd949b611fc76cad3c87e534/orjson-3.10.14-cp312-cp312-win32.whl", hash = "sha256:d5075c54edf1d6ad81d4c6523ce54a748ba1208b542e54b97d8a882ecd810fd1", size = 142524 },
|
884 |
+
{ url = "https://files.pythonhosted.org/packages/70/7f/f2d346819a273653825e7c92dc26418c8da506003c9fc1dfe8157e733b2e/orjson-3.10.14-cp312-cp312-win_amd64.whl", hash = "sha256:175cafd322e458603e8ce73510a068d16b6e6f389c13f69bf16de0e843d7d406", size = 133663 },
|
885 |
+
{ url = "https://files.pythonhosted.org/packages/46/bb/f1b037d89f580c79eda0940772384cc226a697be1cb4eb94ae4e792aa34c/orjson-3.10.14-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0905ca08a10f7e0e0c97d11359609300eb1437490a7f32bbaa349de757e2e0c7", size = 249333 },
|
886 |
+
{ url = "https://files.pythonhosted.org/packages/e4/72/12958a073cace3f8acef0f9a30739d95f46bbb1544126fecad11527d4508/orjson-3.10.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92d13292249f9f2a3e418cbc307a9fbbef043c65f4bd8ba1eb620bc2aaba3d15", size = 125038 },
|
887 |
+
{ url = "https://files.pythonhosted.org/packages/c0/ae/461f78b1c98de1bc034af88bc21c6a792cc63373261fbc10a6ee560814fa/orjson-3.10.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90937664e776ad316d64251e2fa2ad69265e4443067668e4727074fe39676414", size = 130604 },
|
888 |
+
{ url = "https://files.pythonhosted.org/packages/ae/d2/17f50513f56bff7898840fddf7fb88f501305b9b2605d2793ff224789665/orjson-3.10.14-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9ed3d26c4cb4f6babaf791aa46a029265850e80ec2a566581f5c2ee1a14df4f1", size = 130756 },
|
889 |
+
{ url = "https://files.pythonhosted.org/packages/fa/bc/673856e4af94c9890dfd8e2054c05dc2ddc16d1728c2aa0c5bd198943105/orjson-3.10.14-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:56ee546c2bbe9599aba78169f99d1dc33301853e897dbaf642d654248280dc6e", size = 414613 },
|
890 |
+
{ url = "https://files.pythonhosted.org/packages/09/01/08c5b69b0756dd1790fcffa569d6a28dedcd7b97f825e4b46537b788908c/orjson-3.10.14-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:901e826cb2f1bdc1fcef3ef59adf0c451e8f7c0b5deb26c1a933fb66fb505eae", size = 141010 },
|
891 |
+
{ url = "https://files.pythonhosted.org/packages/5b/98/72883bb6cf88fd364996e62d2026622ca79bfb8dbaf96ccdd2018ada25b1/orjson-3.10.14-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:26336c0d4b2d44636e1e1e6ed1002f03c6aae4a8a9329561c8883f135e9ff010", size = 129732 },
|
892 |
+
{ url = "https://files.pythonhosted.org/packages/e4/99/347418f7ef56dcb478ba131a6112b8ddd5b747942652b6e77a53155a7e21/orjson-3.10.14-cp313-cp313-win32.whl", hash = "sha256:e2bc525e335a8545c4e48f84dd0328bc46158c9aaeb8a1c2276546e94540ea3d", size = 142504 },
|
893 |
+
{ url = "https://files.pythonhosted.org/packages/59/ac/5e96cad01083015f7bfdb02ccafa489da8e6caa7f4c519e215f04d2bd856/orjson-3.10.14-cp313-cp313-win_amd64.whl", hash = "sha256:eca04dfd792cedad53dc9a917da1a522486255360cb4e77619343a20d9f35364", size = 133388 },
|
894 |
]
|
895 |
|
896 |
[[package]]
|
|
|
952 |
|
953 |
[[package]]
|
954 |
name = "pillow"
|
955 |
+
version = "11.1.0"
|
956 |
+
source = { registry = "https://pypi.org/simple" }
|
957 |
+
sdist = { url = "https://files.pythonhosted.org/packages/f3/af/c097e544e7bd278333db77933e535098c259609c4eb3b85381109602fb5b/pillow-11.1.0.tar.gz", hash = "sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20", size = 46742715 }
|
958 |
+
wheels = [
|
959 |
+
{ url = "https://files.pythonhosted.org/packages/50/1c/2dcea34ac3d7bc96a1fd1bd0a6e06a57c67167fec2cff8d95d88229a8817/pillow-11.1.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:e1abe69aca89514737465752b4bcaf8016de61b3be1397a8fc260ba33321b3a8", size = 3229983 },
|
960 |
+
{ url = "https://files.pythonhosted.org/packages/14/ca/6bec3df25e4c88432681de94a3531cc738bd85dea6c7aa6ab6f81ad8bd11/pillow-11.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c640e5a06869c75994624551f45e5506e4256562ead981cce820d5ab39ae2192", size = 3101831 },
|
961 |
+
{ url = "https://files.pythonhosted.org/packages/d4/2c/668e18e5521e46eb9667b09e501d8e07049eb5bfe39d56be0724a43117e6/pillow-11.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a07dba04c5e22824816b2615ad7a7484432d7f540e6fa86af60d2de57b0fcee2", size = 4314074 },
|
962 |
+
{ url = "https://files.pythonhosted.org/packages/02/80/79f99b714f0fc25f6a8499ecfd1f810df12aec170ea1e32a4f75746051ce/pillow-11.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e267b0ed063341f3e60acd25c05200df4193e15a4a5807075cd71225a2386e26", size = 4394933 },
|
963 |
+
{ url = "https://files.pythonhosted.org/packages/81/aa/8d4ad25dc11fd10a2001d5b8a80fdc0e564ac33b293bdfe04ed387e0fd95/pillow-11.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bd165131fd51697e22421d0e467997ad31621b74bfc0b75956608cb2906dda07", size = 4353349 },
|
964 |
+
{ url = "https://files.pythonhosted.org/packages/84/7a/cd0c3eaf4a28cb2a74bdd19129f7726277a7f30c4f8424cd27a62987d864/pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:abc56501c3fd148d60659aae0af6ddc149660469082859fa7b066a298bde9482", size = 4476532 },
|
965 |
+
{ url = "https://files.pythonhosted.org/packages/8f/8b/a907fdd3ae8f01c7670dfb1499c53c28e217c338b47a813af8d815e7ce97/pillow-11.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:54ce1c9a16a9561b6d6d8cb30089ab1e5eb66918cb47d457bd996ef34182922e", size = 4279789 },
|
966 |
+
{ url = "https://files.pythonhosted.org/packages/6f/9a/9f139d9e8cccd661c3efbf6898967a9a337eb2e9be2b454ba0a09533100d/pillow-11.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:73ddde795ee9b06257dac5ad42fcb07f3b9b813f8c1f7f870f402f4dc54b5269", size = 4413131 },
|
967 |
+
{ url = "https://files.pythonhosted.org/packages/a8/68/0d8d461f42a3f37432203c8e6df94da10ac8081b6d35af1c203bf3111088/pillow-11.1.0-cp310-cp310-win32.whl", hash = "sha256:3a5fe20a7b66e8135d7fd617b13272626a28278d0e578c98720d9ba4b2439d49", size = 2291213 },
|
968 |
+
{ url = "https://files.pythonhosted.org/packages/14/81/d0dff759a74ba87715509af9f6cb21fa21d93b02b3316ed43bda83664db9/pillow-11.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6123aa4a59d75f06e9dd3dac5bf8bc9aa383121bb3dd9a7a612e05eabc9961a", size = 2625725 },
|
969 |
+
{ url = "https://files.pythonhosted.org/packages/ce/1f/8d50c096a1d58ef0584ddc37e6f602828515219e9d2428e14ce50f5ecad1/pillow-11.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:a76da0a31da6fcae4210aa94fd779c65c75786bc9af06289cd1c184451ef7a65", size = 2375213 },
|
970 |
+
{ url = "https://files.pythonhosted.org/packages/dd/d6/2000bfd8d5414fb70cbbe52c8332f2283ff30ed66a9cde42716c8ecbe22c/pillow-11.1.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e06695e0326d05b06833b40b7ef477e475d0b1ba3a6d27da1bb48c23209bf457", size = 3229968 },
|
971 |
+
{ url = "https://files.pythonhosted.org/packages/d9/45/3fe487010dd9ce0a06adf9b8ff4f273cc0a44536e234b0fad3532a42c15b/pillow-11.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:96f82000e12f23e4f29346e42702b6ed9a2f2fea34a740dd5ffffcc8c539eb35", size = 3101806 },
|
972 |
+
{ url = "https://files.pythonhosted.org/packages/e3/72/776b3629c47d9d5f1c160113158a7a7ad177688d3a1159cd3b62ded5a33a/pillow-11.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3cd561ded2cf2bbae44d4605837221b987c216cff94f49dfeed63488bb228d2", size = 4322283 },
|
973 |
+
{ url = "https://files.pythonhosted.org/packages/e4/c2/e25199e7e4e71d64eeb869f5b72c7ddec70e0a87926398785ab944d92375/pillow-11.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f189805c8be5ca5add39e6f899e6ce2ed824e65fb45f3c28cb2841911da19070", size = 4402945 },
|
974 |
+
{ url = "https://files.pythonhosted.org/packages/c1/ed/51d6136c9d5911f78632b1b86c45241c712c5a80ed7fa7f9120a5dff1eba/pillow-11.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dd0052e9db3474df30433f83a71b9b23bd9e4ef1de13d92df21a52c0303b8ab6", size = 4361228 },
|
975 |
+
{ url = "https://files.pythonhosted.org/packages/48/a4/fbfe9d5581d7b111b28f1d8c2762dee92e9821bb209af9fa83c940e507a0/pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:837060a8599b8f5d402e97197d4924f05a2e0d68756998345c829c33186217b1", size = 4484021 },
|
976 |
+
{ url = "https://files.pythonhosted.org/packages/39/db/0b3c1a5018117f3c1d4df671fb8e47d08937f27519e8614bbe86153b65a5/pillow-11.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:aa8dd43daa836b9a8128dbe7d923423e5ad86f50a7a14dc688194b7be5c0dea2", size = 4287449 },
|
977 |
+
{ url = "https://files.pythonhosted.org/packages/d9/58/bc128da7fea8c89fc85e09f773c4901e95b5936000e6f303222490c052f3/pillow-11.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0a2f91f8a8b367e7a57c6e91cd25af510168091fb89ec5146003e424e1558a96", size = 4419972 },
|
978 |
+
{ url = "https://files.pythonhosted.org/packages/5f/bb/58f34379bde9fe197f51841c5bbe8830c28bbb6d3801f16a83b8f2ad37df/pillow-11.1.0-cp311-cp311-win32.whl", hash = "sha256:c12fc111ef090845de2bb15009372175d76ac99969bdf31e2ce9b42e4b8cd88f", size = 2291201 },
|
979 |
+
{ url = "https://files.pythonhosted.org/packages/3a/c6/fce9255272bcf0c39e15abd2f8fd8429a954cf344469eaceb9d0d1366913/pillow-11.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbd43429d0d7ed6533b25fc993861b8fd512c42d04514a0dd6337fb3ccf22761", size = 2625686 },
|
980 |
+
{ url = "https://files.pythonhosted.org/packages/c8/52/8ba066d569d932365509054859f74f2a9abee273edcef5cd75e4bc3e831e/pillow-11.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:f7955ecf5609dee9442cbface754f2c6e541d9e6eda87fad7f7a989b0bdb9d71", size = 2375194 },
|
981 |
+
{ url = "https://files.pythonhosted.org/packages/95/20/9ce6ed62c91c073fcaa23d216e68289e19d95fb8188b9fb7a63d36771db8/pillow-11.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2062ffb1d36544d42fcaa277b069c88b01bb7298f4efa06731a7fd6cc290b81a", size = 3226818 },
|
982 |
+
{ url = "https://files.pythonhosted.org/packages/b9/d8/f6004d98579a2596c098d1e30d10b248798cceff82d2b77aa914875bfea1/pillow-11.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a85b653980faad27e88b141348707ceeef8a1186f75ecc600c395dcac19f385b", size = 3101662 },
|
983 |
+
{ url = "https://files.pythonhosted.org/packages/08/d9/892e705f90051c7a2574d9f24579c9e100c828700d78a63239676f960b74/pillow-11.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9409c080586d1f683df3f184f20e36fb647f2e0bc3988094d4fd8c9f4eb1b3b3", size = 4329317 },
|
984 |
+
{ url = "https://files.pythonhosted.org/packages/8c/aa/7f29711f26680eab0bcd3ecdd6d23ed6bce180d82e3f6380fb7ae35fcf3b/pillow-11.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fdadc077553621911f27ce206ffcbec7d3f8d7b50e0da39f10997e8e2bb7f6a", size = 4412999 },
|
985 |
+
{ url = "https://files.pythonhosted.org/packages/c8/c4/8f0fe3b9e0f7196f6d0bbb151f9fba323d72a41da068610c4c960b16632a/pillow-11.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:93a18841d09bcdd774dcdc308e4537e1f867b3dec059c131fde0327899734aa1", size = 4368819 },
|
986 |
+
{ url = "https://files.pythonhosted.org/packages/38/0d/84200ed6a871ce386ddc82904bfadc0c6b28b0c0ec78176871a4679e40b3/pillow-11.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9aa9aeddeed452b2f616ff5507459e7bab436916ccb10961c4a382cd3e03f47f", size = 4496081 },
|
987 |
+
{ url = "https://files.pythonhosted.org/packages/84/9c/9bcd66f714d7e25b64118e3952d52841a4babc6d97b6d28e2261c52045d4/pillow-11.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3cdcdb0b896e981678eee140d882b70092dac83ac1cdf6b3a60e2216a73f2b91", size = 4296513 },
|
988 |
+
{ url = "https://files.pythonhosted.org/packages/db/61/ada2a226e22da011b45f7104c95ebda1b63dcbb0c378ad0f7c2a710f8fd2/pillow-11.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:36ba10b9cb413e7c7dfa3e189aba252deee0602c86c309799da5a74009ac7a1c", size = 4431298 },
|
989 |
+
{ url = "https://files.pythonhosted.org/packages/e7/c4/fc6e86750523f367923522014b821c11ebc5ad402e659d8c9d09b3c9d70c/pillow-11.1.0-cp312-cp312-win32.whl", hash = "sha256:cfd5cd998c2e36a862d0e27b2df63237e67273f2fc78f47445b14e73a810e7e6", size = 2291630 },
|
990 |
+
{ url = "https://files.pythonhosted.org/packages/08/5c/2104299949b9d504baf3f4d35f73dbd14ef31bbd1ddc2c1b66a5b7dfda44/pillow-11.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:a697cd8ba0383bba3d2d3ada02b34ed268cb548b369943cd349007730c92bddf", size = 2626369 },
|
991 |
+
{ url = "https://files.pythonhosted.org/packages/37/f3/9b18362206b244167c958984b57c7f70a0289bfb59a530dd8af5f699b910/pillow-11.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:4dd43a78897793f60766563969442020e90eb7847463eca901e41ba186a7d4a5", size = 2375240 },
|
992 |
+
{ url = "https://files.pythonhosted.org/packages/b3/31/9ca79cafdce364fd5c980cd3416c20ce1bebd235b470d262f9d24d810184/pillow-11.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ae98e14432d458fc3de11a77ccb3ae65ddce70f730e7c76140653048c71bfcbc", size = 3226640 },
|
993 |
+
{ url = "https://files.pythonhosted.org/packages/ac/0f/ff07ad45a1f172a497aa393b13a9d81a32e1477ef0e869d030e3c1532521/pillow-11.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cc1331b6d5a6e144aeb5e626f4375f5b7ae9934ba620c0ac6b3e43d5e683a0f0", size = 3101437 },
|
994 |
+
{ url = "https://files.pythonhosted.org/packages/08/2f/9906fca87a68d29ec4530be1f893149e0cb64a86d1f9f70a7cfcdfe8ae44/pillow-11.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:758e9d4ef15d3560214cddbc97b8ef3ef86ce04d62ddac17ad39ba87e89bd3b1", size = 4326605 },
|
995 |
+
{ url = "https://files.pythonhosted.org/packages/b0/0f/f3547ee15b145bc5c8b336401b2d4c9d9da67da9dcb572d7c0d4103d2c69/pillow-11.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b523466b1a31d0dcef7c5be1f20b942919b62fd6e9a9be199d035509cbefc0ec", size = 4411173 },
|
996 |
+
{ url = "https://files.pythonhosted.org/packages/b1/df/bf8176aa5db515c5de584c5e00df9bab0713548fd780c82a86cba2c2fedb/pillow-11.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9044b5e4f7083f209c4e35aa5dd54b1dd5b112b108648f5c902ad586d4f945c5", size = 4369145 },
|
997 |
+
{ url = "https://files.pythonhosted.org/packages/de/7c/7433122d1cfadc740f577cb55526fdc39129a648ac65ce64db2eb7209277/pillow-11.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:3764d53e09cdedd91bee65c2527815d315c6b90d7b8b79759cc48d7bf5d4f114", size = 4496340 },
|
998 |
+
{ url = "https://files.pythonhosted.org/packages/25/46/dd94b93ca6bd555588835f2504bd90c00d5438fe131cf01cfa0c5131a19d/pillow-11.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31eba6bbdd27dde97b0174ddf0297d7a9c3a507a8a1480e1e60ef914fe23d352", size = 4296906 },
|
999 |
+
{ url = "https://files.pythonhosted.org/packages/a8/28/2f9d32014dfc7753e586db9add35b8a41b7a3b46540e965cb6d6bc607bd2/pillow-11.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b5d658fbd9f0d6eea113aea286b21d3cd4d3fd978157cbf2447a6035916506d3", size = 4431759 },
|
1000 |
+
{ url = "https://files.pythonhosted.org/packages/33/48/19c2cbe7403870fbe8b7737d19eb013f46299cdfe4501573367f6396c775/pillow-11.1.0-cp313-cp313-win32.whl", hash = "sha256:f86d3a7a9af5d826744fabf4afd15b9dfef44fe69a98541f666f66fbb8d3fef9", size = 2291657 },
|
1001 |
+
{ url = "https://files.pythonhosted.org/packages/3b/ad/285c556747d34c399f332ba7c1a595ba245796ef3e22eae190f5364bb62b/pillow-11.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:593c5fd6be85da83656b93ffcccc2312d2d149d251e98588b14fbc288fd8909c", size = 2626304 },
|
1002 |
+
{ url = "https://files.pythonhosted.org/packages/e5/7b/ef35a71163bf36db06e9c8729608f78dedf032fc8313d19bd4be5c2588f3/pillow-11.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:11633d58b6ee5733bde153a8dafd25e505ea3d32e261accd388827ee987baf65", size = 2375117 },
|
1003 |
+
{ url = "https://files.pythonhosted.org/packages/79/30/77f54228401e84d6791354888549b45824ab0ffde659bafa67956303a09f/pillow-11.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:70ca5ef3b3b1c4a0812b5c63c57c23b63e53bc38e758b37a951e5bc466449861", size = 3230060 },
|
1004 |
+
{ url = "https://files.pythonhosted.org/packages/ce/b1/56723b74b07dd64c1010fee011951ea9c35a43d8020acd03111f14298225/pillow-11.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8000376f139d4d38d6851eb149b321a52bb8893a88dae8ee7d95840431977081", size = 3106192 },
|
1005 |
+
{ url = "https://files.pythonhosted.org/packages/e1/cd/7bf7180e08f80a4dcc6b4c3a0aa9e0b0ae57168562726a05dc8aa8fa66b0/pillow-11.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee85f0696a17dd28fbcfceb59f9510aa71934b483d1f5601d1030c3c8304f3c", size = 4446805 },
|
1006 |
+
{ url = "https://files.pythonhosted.org/packages/97/42/87c856ea30c8ed97e8efbe672b58c8304dee0573f8c7cab62ae9e31db6ae/pillow-11.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:dd0e081319328928531df7a0e63621caf67652c8464303fd102141b785ef9547", size = 4530623 },
|
1007 |
+
{ url = "https://files.pythonhosted.org/packages/ff/41/026879e90c84a88e33fb00cc6bd915ac2743c67e87a18f80270dfe3c2041/pillow-11.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e63e4e5081de46517099dc30abe418122f54531a6ae2ebc8680bcd7096860eab", size = 4465191 },
|
1008 |
+
{ url = "https://files.pythonhosted.org/packages/e5/fb/a7960e838bc5df57a2ce23183bfd2290d97c33028b96bde332a9057834d3/pillow-11.1.0-cp313-cp313t-win32.whl", hash = "sha256:dda60aa465b861324e65a78c9f5cf0f4bc713e4309f83bc387be158b077963d9", size = 2295494 },
|
1009 |
+
{ url = "https://files.pythonhosted.org/packages/d7/6c/6ec83ee2f6f0fda8d4cf89045c6be4b0373ebfc363ba8538f8c999f63fcd/pillow-11.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ad5db5781c774ab9a9b2c4302bbf0c1014960a0a7be63278d13ae6fdf88126fe", size = 2631595 },
|
1010 |
+
{ url = "https://files.pythonhosted.org/packages/cf/6c/41c21c6c8af92b9fea313aa47c75de49e2f9a467964ee33eb0135d47eb64/pillow-11.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:67cd427c68926108778a9005f2a04adbd5e67c442ed21d95389fe1d595458756", size = 2377651 },
|
1011 |
+
{ url = "https://files.pythonhosted.org/packages/fa/c5/389961578fb677b8b3244fcd934f720ed25a148b9a5cc81c91bdf59d8588/pillow-11.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8c730dc3a83e5ac137fbc92dfcfe1511ce3b2b5d7578315b63dbbb76f7f51d90", size = 3198345 },
|
1012 |
+
{ url = "https://files.pythonhosted.org/packages/c4/fa/803c0e50ffee74d4b965229e816af55276eac1d5806712de86f9371858fd/pillow-11.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7d33d2fae0e8b170b6a6c57400e077412240f6f5bb2a342cf1ee512a787942bb", size = 3072938 },
|
1013 |
+
{ url = "https://files.pythonhosted.org/packages/dc/67/2a3a5f8012b5d8c63fe53958ba906c1b1d0482ebed5618057ef4d22f8076/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8d65b38173085f24bc07f8b6c505cbb7418009fa1a1fcb111b1f4961814a442", size = 3400049 },
|
1014 |
+
{ url = "https://files.pythonhosted.org/packages/e5/a0/514f0d317446c98c478d1872497eb92e7cde67003fed74f696441e647446/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:015c6e863faa4779251436db398ae75051469f7c903b043a48f078e437656f83", size = 3422431 },
|
1015 |
+
{ url = "https://files.pythonhosted.org/packages/cd/00/20f40a935514037b7d3f87adfc87d2c538430ea625b63b3af8c3f5578e72/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d44ff19eea13ae4acdaaab0179fa68c0c6f2f45d66a4d8ec1eda7d6cecbcc15f", size = 3446208 },
|
1016 |
+
{ url = "https://files.pythonhosted.org/packages/28/3c/7de681727963043e093c72e6c3348411b0185eab3263100d4490234ba2f6/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d3d8da4a631471dfaf94c10c85f5277b1f8e42ac42bade1ac67da4b4a7359b73", size = 3509746 },
|
1017 |
+
{ url = "https://files.pythonhosted.org/packages/41/67/936f9814bdd74b2dfd4822f1f7725ab5d8ff4103919a1664eb4874c58b2f/pillow-11.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:4637b88343166249fe8aa94e7c4a62a180c4b3898283bb5d3d2fd5fe10d8e4e0", size = 2626353 },
|
1018 |
]
|
1019 |
|
1020 |
[[package]]
|
|
|
1232 |
|
1233 |
[[package]]
|
1234 |
name = "pygments"
|
1235 |
+
version = "2.19.1"
|
1236 |
source = { registry = "https://pypi.org/simple" }
|
1237 |
+
sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 }
|
1238 |
wheels = [
|
1239 |
+
{ url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 },
|
1240 |
]
|
1241 |
|
1242 |
[[package]]
|
|
|
1344 |
|
1345 |
[[package]]
|
1346 |
name = "ruff"
|
1347 |
+
version = "0.8.6"
|
1348 |
+
source = { registry = "https://pypi.org/simple" }
|
1349 |
+
sdist = { url = "https://files.pythonhosted.org/packages/da/00/089db7890ea3be5709e3ece6e46408d6f1e876026ec3fd081ee585fef209/ruff-0.8.6.tar.gz", hash = "sha256:dcad24b81b62650b0eb8814f576fc65cfee8674772a6e24c9b747911801eeaa5", size = 3473116 }
|
1350 |
+
wheels = [
|
1351 |
+
{ url = "https://files.pythonhosted.org/packages/d7/28/aa07903694637c2fa394a9f4fe93cf861ad8b09f1282fa650ef07ff9fe97/ruff-0.8.6-py3-none-linux_armv6l.whl", hash = "sha256:defed167955d42c68b407e8f2e6f56ba52520e790aba4ca707a9c88619e580e3", size = 10628735 },
|
1352 |
+
{ url = "https://files.pythonhosted.org/packages/2b/43/827bb1448f1fcb0fb42e9c6edf8fb067ca8244923bf0ddf12b7bf949065c/ruff-0.8.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:54799ca3d67ae5e0b7a7ac234baa657a9c1784b48ec954a094da7c206e0365b1", size = 10386758 },
|
1353 |
+
{ url = "https://files.pythonhosted.org/packages/df/93/fc852a81c3cd315b14676db3b8327d2bb2d7508649ad60bfdb966d60738d/ruff-0.8.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e88b8f6d901477c41559ba540beeb5a671e14cd29ebd5683903572f4b40a9807", size = 10007808 },
|
1354 |
+
{ url = "https://files.pythonhosted.org/packages/94/e9/e0ed4af1794335fb280c4fac180f2bf40f6a3b859cae93a5a3ada27325ae/ruff-0.8.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0509e8da430228236a18a677fcdb0c1f102dd26d5520f71f79b094963322ed25", size = 10861031 },
|
1355 |
+
{ url = "https://files.pythonhosted.org/packages/82/68/da0db02f5ecb2ce912c2bef2aa9fcb8915c31e9bc363969cfaaddbc4c1c2/ruff-0.8.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:91a7ddb221779871cf226100e677b5ea38c2d54e9e2c8ed847450ebbdf99b32d", size = 10388246 },
|
1356 |
+
{ url = "https://files.pythonhosted.org/packages/ac/1d/b85383db181639019b50eb277c2ee48f9f5168f4f7c287376f2b6e2a6dc2/ruff-0.8.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:248b1fb3f739d01d528cc50b35ee9c4812aa58cc5935998e776bf8ed5b251e75", size = 11424693 },
|
1357 |
+
{ url = "https://files.pythonhosted.org/packages/ac/b7/30bc78a37648d31bfc7ba7105b108cb9091cd925f249aa533038ebc5a96f/ruff-0.8.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:bc3c083c50390cf69e7e1b5a5a7303898966be973664ec0c4a4acea82c1d4315", size = 12141921 },
|
1358 |
+
{ url = "https://files.pythonhosted.org/packages/60/b3/ee0a14cf6a1fbd6965b601c88d5625d250b97caf0534181e151504498f86/ruff-0.8.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52d587092ab8df308635762386f45f4638badb0866355b2b86760f6d3c076188", size = 11692419 },
|
1359 |
+
{ url = "https://files.pythonhosted.org/packages/ef/d6/c597062b2931ba3e3861e80bd2b147ca12b3370afc3889af46f29209037f/ruff-0.8.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:61323159cf21bc3897674e5adb27cd9e7700bab6b84de40d7be28c3d46dc67cf", size = 12981648 },
|
1360 |
+
{ url = "https://files.pythonhosted.org/packages/68/84/21f578c2a4144917985f1f4011171aeff94ab18dfa5303ac632da2f9af36/ruff-0.8.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ae4478b1471fc0c44ed52a6fb787e641a2ac58b1c1f91763bafbc2faddc5117", size = 11251801 },
|
1361 |
+
{ url = "https://files.pythonhosted.org/packages/6c/aa/1ac02537c8edeb13e0955b5db86b5c050a1dcba54f6d49ab567decaa59c1/ruff-0.8.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0c000a471d519b3e6cfc9c6680025d923b4ca140ce3e4612d1a2ef58e11f11fe", size = 10849857 },
|
1362 |
+
{ url = "https://files.pythonhosted.org/packages/eb/00/020cb222252d833956cb3b07e0e40c9d4b984fbb2dc3923075c8f944497d/ruff-0.8.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:9257aa841e9e8d9b727423086f0fa9a86b6b420fbf4bf9e1465d1250ce8e4d8d", size = 10470852 },
|
1363 |
+
{ url = "https://files.pythonhosted.org/packages/00/56/e6d6578202a0141cd52299fe5acb38b2d873565f4670c7a5373b637cf58d/ruff-0.8.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:45a56f61b24682f6f6709636949ae8cc82ae229d8d773b4c76c09ec83964a95a", size = 10972997 },
|
1364 |
+
{ url = "https://files.pythonhosted.org/packages/be/31/dd0db1f4796bda30dea7592f106f3a67a8f00bcd3a50df889fbac58e2786/ruff-0.8.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:496dd38a53aa173481a7d8866bcd6451bd934d06976a2505028a50583e001b76", size = 11317760 },
|
1365 |
+
{ url = "https://files.pythonhosted.org/packages/d4/70/cfcb693dc294e034c6fed837fa2ec98b27cc97a26db5d049345364f504bf/ruff-0.8.6-py3-none-win32.whl", hash = "sha256:e169ea1b9eae61c99b257dc83b9ee6c76f89042752cb2d83486a7d6e48e8f764", size = 8799729 },
|
1366 |
+
{ url = "https://files.pythonhosted.org/packages/60/22/ae6bcaa0edc83af42751bd193138bfb7598b2990939d3e40494d6c00698c/ruff-0.8.6-py3-none-win_amd64.whl", hash = "sha256:f1d70bef3d16fdc897ee290d7d20da3cbe4e26349f62e8a0274e7a3f4ce7a905", size = 9673857 },
|
1367 |
+
{ url = "https://files.pythonhosted.org/packages/91/f8/3765e053acd07baa055c96b2065c7fab91f911b3c076dfea71006666f5b0/ruff-0.8.6-py3-none-win_arm64.whl", hash = "sha256:7d7fc2377a04b6e04ffe588caad613d0c460eb2ecba4c0ccbbfe2bc973cbc162", size = 9149556 },
|
1368 |
]
|
1369 |
|
1370 |
[[package]]
|