Spaces:
Running
on
Zero
Running
on
Zero
amlpai04
commited on
Commit
·
5a98ee7
1
Parent(s):
e03657f
comments for fix
Browse files- app/content/how_it_works.md +44 -0
- app/content/main_sub_title.md +1 -1
- app/main.py +2 -1
- app/tabs/submit.py +17 -3
- app/tabs/templating.py +41 -9
- app/tabs/visualizer.py +14 -2
- uv.lock +114 -116
app/content/how_it_works.md
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Nocebant Achilles de vallis meminere fugit
|
2 |
+
|
3 |
+
## Corpus exta frondes pectora neque
|
4 |
+
|
5 |
+
Lorem markdownum animi, resistere praefertur recenti de vocor data levibus.
|
6 |
+
Lucifer cupidine pugnandi alter, quies modestos, nec aut quae Cancri diva
|
7 |
+
Latiis. Morerne est bonis ingentibus luctantemque corpore ad consistuntque
|
8 |
+
Cereris clausit.
|
9 |
+
|
10 |
+
## Putat inclita si parte se
|
11 |
+
|
12 |
+
Accipe fit explevit pessima in timebat querellas qui. Peti fuit: summa et
|
13 |
+
adstantem vulnere artus is utque orbes suis exsangues me saepe! Hominis et Troia
|
14 |
+
pater contigit, dolor fecit illis in.
|
15 |
+
|
16 |
+
## Nos celer bracchia curvari hiemsque
|
17 |
+
|
18 |
+
Corpus Alcmene omnia hiemes viros sic nepotum *pater* soporem, tenebat modo
|
19 |
+
Lethaea adstupet artis et cur. Optatis tendebant posita pudore Hennaeis dicere
|
20 |
+
visa tanti cornua laevam et faciebat et transfert sanguineam iussos. Aliquid
|
21 |
+
occupat [sagittis](http://densihabet.org/) tributuram si nihil fugamque
|
22 |
+
Bienoris.
|
23 |
+
|
24 |
+
> Os docuisse posse tectus, nisi pronas, trabes annos amor porrigitur. Corpora
|
25 |
+
> retemptantem fulvas. Et letum semianimem exclamat omnia et amisso.
|
26 |
+
|
27 |
+
## Aquae tibi insanis se quas
|
28 |
+
|
29 |
+
[Hyperione dare](http://www.fama.org/)? Cum certam virique fugacis magnos, sedes
|
30 |
+
iuverat Canens fera, mox cervus, res dea equorum vocant, vocandus.
|
31 |
+
|
32 |
+
traceroute.mac_active.partition_widget_optical(restoreBare(irqMeme,
|
33 |
+
reimage_file), -1, network.ethics(socketUdp, tagAddressLaser, 54));
|
34 |
+
processScanMainframe.uncPipeline(flash_graphics_kilobit(dsl, imapCircuit,
|
35 |
+
suffix(driveMultitaskingDrive)));
|
36 |
+
var guidSmishing = 881375;
|
37 |
+
ipv(vgaPointPeripheral);
|
38 |
+
|
39 |
+
Ureris totidemque mihi sed pendens amantes praesens ambos tua planxerunt
|
40 |
+
**lumine**, huius bracchia Cepheusque ne invida circum etiam! Exsistere
|
41 |
+
cornuque, non oblatae quid servat quae tecto potiere exhibuit annos qui vulnera.
|
42 |
+
Eras sic non passus peragit frequens, quae creati vix. Regno per cortice ignea,
|
43 |
+
versus non omni missus: cervice sub *foedoque ferali*. Troiana hiemes solidumve
|
44 |
+
et timori; quod, deus clamor barba; mea aulam furtum saltus suo catenas.
|
app/content/main_sub_title.md
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
<a href="https://huggingface.co/Riksarkivet">
|
2 |
-
<img src="app/assets/images/fav-removebg-preview.png" width="17%" align="right" margin-right="100" />
|
3 |
</a>
|
|
|
1 |
<a href="https://huggingface.co/Riksarkivet">
|
2 |
+
<img src="https://media.githubusercontent.com/media/AI-Riksarkivet/htrflow_app/refs/heads/main/app/assets/images/fav-removebg-preview.png" width="17%" align="right" margin-right="100" />
|
3 |
</a>
|
app/main.py
CHANGED
@@ -57,8 +57,9 @@ with gr.Blocks(title="HTRflow", theme=theme, css=css, head=matomo) as demo:
|
|
57 |
with gr.Column(scale=1):
|
58 |
help_button = gr.Button("Help", scale=0)
|
59 |
with Modal(visible=False) as help_modal:
|
|
|
60 |
with gr.Tab("How to use App"):
|
61 |
-
gr.Markdown(
|
62 |
with gr.Tab("Contact"):
|
63 |
pass
|
64 |
|
|
|
57 |
with gr.Column(scale=1):
|
58 |
help_button = gr.Button("Help", scale=0)
|
59 |
with Modal(visible=False) as help_modal:
|
60 |
+
# TODO: tutorial material?
|
61 |
with gr.Tab("How to use App"):
|
62 |
+
gr.Markdown(load_markdown(None, "how_it_works"))
|
63 |
with gr.Tab("Contact"):
|
64 |
pass
|
65 |
|
app/tabs/submit.py
CHANGED
@@ -17,7 +17,12 @@ class PipelineWithProgress(Pipeline):
|
|
17 |
@classmethod
|
18 |
def from_config(cls, config: dict[str, str]):
|
19 |
"""Init pipeline from config, ensuring the correct subclass is instantiated."""
|
20 |
-
return cls(
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
def run(self, collection, start=0, progress=None):
|
23 |
"""
|
@@ -103,7 +108,9 @@ def run_htrflow(custom_template_yaml, batch_image_gallery, progress=gr.Progress(
|
|
103 |
pipe = PipelineWithProgress.from_config(temp_config)
|
104 |
collections = auto_import(images)
|
105 |
|
106 |
-
gr.Info(
|
|
|
|
|
107 |
progress(0.1, desc="HTRflow: Processing")
|
108 |
|
109 |
for collection in collections:
|
@@ -139,6 +146,8 @@ def tracking_exported_files(tmp_output_paths):
|
|
139 |
|
140 |
print(tmp_output_paths)
|
141 |
|
|
|
|
|
142 |
for tmp_folder in tmp_output_paths:
|
143 |
for ext in accepted_extensions:
|
144 |
search_pattern = os.path.join(tmp_folder, "**", f"*{ext}")
|
@@ -175,7 +184,9 @@ with gr.Blocks() as submit:
|
|
175 |
with gr.Row():
|
176 |
run_button = gr.Button("Submit", variant="primary", scale=0, min_width=200)
|
177 |
progess_bar = gr.Textbox(visible=False, show_label=False)
|
178 |
-
collection_output_files = gr.Files(
|
|
|
|
|
179 |
|
180 |
@batch_image_gallery.upload(
|
181 |
inputs=batch_image_gallery,
|
@@ -198,3 +209,6 @@ with gr.Blocks() as submit:
|
|
198 |
lambda: (gr.update(visible=False), gr.update(visible=True)),
|
199 |
outputs=[progess_bar, collection_output_files],
|
200 |
)
|
|
|
|
|
|
|
|
17 |
@classmethod
|
18 |
def from_config(cls, config: dict[str, str]):
|
19 |
"""Init pipeline from config, ensuring the correct subclass is instantiated."""
|
20 |
+
return cls(
|
21 |
+
[
|
22 |
+
init_step(step["step"], step.get("settings", {}))
|
23 |
+
for step in config["steps"]
|
24 |
+
]
|
25 |
+
)
|
26 |
|
27 |
def run(self, collection, start=0, progress=None):
|
28 |
"""
|
|
|
108 |
pipe = PipelineWithProgress.from_config(temp_config)
|
109 |
collections = auto_import(images)
|
110 |
|
111 |
+
gr.Info(
|
112 |
+
f"HTRflow: processing {len(images)} {'image' if len(images) == 1 else 'images'}."
|
113 |
+
)
|
114 |
progress(0.1, desc="HTRflow: Processing")
|
115 |
|
116 |
for collection in collections:
|
|
|
146 |
|
147 |
print(tmp_output_paths)
|
148 |
|
149 |
+
# TODO: fix so that we get the file extension for page and alto...
|
150 |
+
|
151 |
for tmp_folder in tmp_output_paths:
|
152 |
for ext in accepted_extensions:
|
153 |
search_pattern = os.path.join(tmp_folder, "**", f"*{ext}")
|
|
|
184 |
with gr.Row():
|
185 |
run_button = gr.Button("Submit", variant="primary", scale=0, min_width=200)
|
186 |
progess_bar = gr.Textbox(visible=False, show_label=False)
|
187 |
+
collection_output_files = gr.Files(
|
188 |
+
label="Output Files", scale=0, min_width=400, visible=False
|
189 |
+
)
|
190 |
|
191 |
@batch_image_gallery.upload(
|
192 |
inputs=batch_image_gallery,
|
|
|
209 |
lambda: (gr.update(visible=False), gr.update(visible=True)),
|
210 |
outputs=[progess_bar, collection_output_files],
|
211 |
)
|
212 |
+
|
213 |
+
# TODO: valudate yaml before submitting...?
|
214 |
+
# TODO: Add toast gr.Warning: Lose previues run...
|
app/tabs/templating.py
CHANGED
@@ -6,7 +6,11 @@ import re
|
|
6 |
def get_sorted_files(folder, extensions):
|
7 |
"""Retrieve sorted files by numeric value in their names."""
|
8 |
return sorted(
|
9 |
-
[
|
|
|
|
|
|
|
|
|
10 |
key=lambda x: (
|
11 |
int(re.search(r"\d+", os.path.basename(x)).group())
|
12 |
if re.search(r"\d+", os.path.basename(x))
|
@@ -40,19 +44,17 @@ def get_yaml_content(yaml_path):
|
|
40 |
return "YAML content not available"
|
41 |
|
42 |
|
43 |
-
# Folder Paths
|
44 |
TEMPLATE_IMAGE_FOLDER = "app/assets/images"
|
45 |
TEMPLATE_YAML_FOLDER = "app/assets/templates"
|
46 |
|
47 |
-
|
48 |
-
|
|
|
49 |
yaml_files = get_sorted_files(TEMPLATE_YAML_FOLDER, (".yaml",))
|
50 |
|
51 |
-
# Categorize YAML Files
|
52 |
yaml_files_numbered = filter_files_by_prefix(yaml_files, r"^\d")
|
53 |
yaml_files_c_letter = filter_files_by_prefix(yaml_files, r"^[cC]")
|
54 |
|
55 |
-
# Create Mappings
|
56 |
name_yaml_files_c_letter_cleaned = clean_file_names(yaml_files_c_letter, "c_")
|
57 |
name_to_yaml_map = dict(zip(name_yaml_files_c_letter_cleaned, yaml_files_c_letter))
|
58 |
|
@@ -90,7 +92,9 @@ with gr.Blocks() as templating_block:
|
|
90 |
with gr.Group():
|
91 |
with gr.Row():
|
92 |
with gr.Column(scale=1):
|
93 |
-
template_image = gr.Image(
|
|
|
|
|
94 |
with gr.Column(scale=1):
|
95 |
template_output_yaml_code = gr.Code(
|
96 |
language="yaml",
|
@@ -122,7 +126,9 @@ with gr.Blocks() as templating_block:
|
|
122 |
yaml_content = get_yaml_content(yaml_files_c_letter[0])
|
123 |
return image_files[2], yaml_content, gr.update(visible=True)
|
124 |
else:
|
125 |
-
return gr.Error(
|
|
|
|
|
126 |
|
127 |
@custom_dropdown_selection_template.select(
|
128 |
inputs=custom_dropdown_selection_template,
|
@@ -135,7 +141,9 @@ with gr.Blocks() as templating_block:
|
|
135 |
yaml_content = get_yaml_content(yaml_path)
|
136 |
return yaml_content
|
137 |
else:
|
138 |
-
return gr.Error(
|
|
|
|
|
139 |
|
140 |
@dropdown_selection_template.select(
|
141 |
inputs=dropdown_selection_template,
|
@@ -156,3 +164,27 @@ with gr.Blocks() as templating_block:
|
|
156 |
custom_dropdown_selection_template,
|
157 |
],
|
158 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
def get_sorted_files(folder, extensions):
|
7 |
"""Retrieve sorted files by numeric value in their names."""
|
8 |
return sorted(
|
9 |
+
[
|
10 |
+
os.path.join(folder, file)
|
11 |
+
for file in os.listdir(folder)
|
12 |
+
if file.lower().endswith(extensions)
|
13 |
+
],
|
14 |
key=lambda x: (
|
15 |
int(re.search(r"\d+", os.path.basename(x)).group())
|
16 |
if re.search(r"\d+", os.path.basename(x))
|
|
|
44 |
return "YAML content not available"
|
45 |
|
46 |
|
|
|
47 |
TEMPLATE_IMAGE_FOLDER = "app/assets/images"
|
48 |
TEMPLATE_YAML_FOLDER = "app/assets/templates"
|
49 |
|
50 |
+
image_files = get_sorted_files(
|
51 |
+
TEMPLATE_IMAGE_FOLDER, (".png", ".jpg", ".jpeg", ".webp")
|
52 |
+
)
|
53 |
yaml_files = get_sorted_files(TEMPLATE_YAML_FOLDER, (".yaml",))
|
54 |
|
|
|
55 |
yaml_files_numbered = filter_files_by_prefix(yaml_files, r"^\d")
|
56 |
yaml_files_c_letter = filter_files_by_prefix(yaml_files, r"^[cC]")
|
57 |
|
|
|
58 |
name_yaml_files_c_letter_cleaned = clean_file_names(yaml_files_c_letter, "c_")
|
59 |
name_to_yaml_map = dict(zip(name_yaml_files_c_letter_cleaned, yaml_files_c_letter))
|
60 |
|
|
|
92 |
with gr.Group():
|
93 |
with gr.Row():
|
94 |
with gr.Column(scale=1):
|
95 |
+
template_image = gr.Image(
|
96 |
+
label="Example Templates", value=image_files[0], height=400
|
97 |
+
)
|
98 |
with gr.Column(scale=1):
|
99 |
template_output_yaml_code = gr.Code(
|
100 |
language="yaml",
|
|
|
126 |
yaml_content = get_yaml_content(yaml_files_c_letter[0])
|
127 |
return image_files[2], yaml_content, gr.update(visible=True)
|
128 |
else:
|
129 |
+
return gr.Error(
|
130 |
+
f"{dropdown_selection_template} - is not a valid Template selection"
|
131 |
+
)
|
132 |
|
133 |
@custom_dropdown_selection_template.select(
|
134 |
inputs=custom_dropdown_selection_template,
|
|
|
141 |
yaml_content = get_yaml_content(yaml_path)
|
142 |
return yaml_content
|
143 |
else:
|
144 |
+
return gr.Error(
|
145 |
+
f"{custom_template_selection} - is not a valid Custom Template selection"
|
146 |
+
)
|
147 |
|
148 |
@dropdown_selection_template.select(
|
149 |
inputs=dropdown_selection_template,
|
|
|
164 |
custom_dropdown_selection_template,
|
165 |
],
|
166 |
)
|
167 |
+
|
168 |
+
# TODO: Vi vill ändra namn på på fileerna så man ser vilken extension (format) fileerna är i
|
169 |
+
# rimes_test - kopia 2_page
|
170 |
+
# .xml
|
171 |
+
# 3.5 KB ⇣
|
172 |
+
# ×
|
173 |
+
# rimes_test - kopia
|
174 |
+
# .xml
|
175 |
+
# 3.5 KB ⇣
|
176 |
+
# ×
|
177 |
+
# rimes_test
|
178 |
+
# .xml
|
179 |
+
# 3.4 KB ⇣
|
180 |
+
# ×
|
181 |
+
# rimes_test - kopia 2
|
182 |
+
# .xml
|
183 |
+
# 1.7 KB ⇣
|
184 |
+
# ×
|
185 |
+
# rimes_test - kopia
|
186 |
+
# .xml
|
187 |
+
# 1.7 KB ⇣
|
188 |
+
# ×
|
189 |
+
# rimes_test
|
190 |
+
# .xml
|
app/tabs/visualizer.py
CHANGED
@@ -80,7 +80,7 @@ with gr.Blocks() as visualizer:
|
|
80 |
file_types=["image"],
|
81 |
label="Visualized Images from HTRflow",
|
82 |
interactive=False,
|
83 |
-
height=
|
84 |
object_fit="cover",
|
85 |
columns=5,
|
86 |
preview=True,
|
@@ -97,7 +97,7 @@ with gr.Blocks() as visualizer:
|
|
97 |
interactive=False,
|
98 |
preview=True,
|
99 |
label="Cropped Polygons",
|
100 |
-
height=
|
101 |
)
|
102 |
df_for_cropped_images = gr.Dataframe(
|
103 |
label="Cropped Transcriptions",
|
@@ -179,3 +179,15 @@ with gr.Blocks() as visualizer:
|
|
179 |
styler = df.style.apply(highlight_row, axis=1)
|
180 |
|
181 |
return styler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
file_types=["image"],
|
81 |
label="Visualized Images from HTRflow",
|
82 |
interactive=False,
|
83 |
+
height=600,
|
84 |
object_fit="cover",
|
85 |
columns=5,
|
86 |
preview=True,
|
|
|
97 |
interactive=False,
|
98 |
preview=True,
|
99 |
label="Cropped Polygons",
|
100 |
+
height=200,
|
101 |
)
|
102 |
df_for_cropped_images = gr.Dataframe(
|
103 |
label="Cropped Transcriptions",
|
|
|
179 |
styler = df.style.apply(highlight_row, axis=1)
|
180 |
|
181 |
return styler
|
182 |
+
|
183 |
+
|
184 |
+
# TODO: if state is empty from submit? dont show visualize button...
|
185 |
+
|
186 |
+
|
187 |
+
# TODO: Add reading order in dataframe
|
188 |
+
# TODO: Add reading order in visualization to the left
|
189 |
+
# TODO: be able to click on mask on the left?
|
190 |
+
|
191 |
+
|
192 |
+
# TODO: Show how to clone and setup pylaia? Which would probably be a seperate docker container!
|
193 |
+
# TODO: fix api! and client... Notebook for api?
|
uv.lock
CHANGED
@@ -1480,49 +1480,49 @@ wheels = [
|
|
1480 |
|
1481 |
[[package]]
|
1482 |
name = "orjson"
|
1483 |
-
version = "3.10.
|
1484 |
-
source = { registry = "https://pypi.org/simple" }
|
1485 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1486 |
-
wheels = [
|
1487 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1488 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1489 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1490 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1491 |
-
{ url = "https://files.pythonhosted.org/packages/ff/
|
1492 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1493 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1494 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1495 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1496 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1497 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1498 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1499 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1500 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1501 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1502 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1503 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1504 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1505 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1506 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1507 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1508 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1509 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1510 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1511 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1512 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1513 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1514 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1515 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1516 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1517 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1518 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1519 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1520 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1521 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1522 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1523 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1524 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1525 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1526 |
]
|
1527 |
|
1528 |
[[package]]
|
@@ -1658,14 +1658,14 @@ wheels = [
|
|
1658 |
|
1659 |
[[package]]
|
1660 |
name = "prompt-toolkit"
|
1661 |
-
version = "3.0.
|
1662 |
source = { registry = "https://pypi.org/simple" }
|
1663 |
dependencies = [
|
1664 |
{ name = "wcwidth" },
|
1665 |
]
|
1666 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1667 |
wheels = [
|
1668 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1669 |
]
|
1670 |
|
1671 |
[[package]]
|
@@ -1856,8 +1856,6 @@ wheels = [
|
|
1856 |
{ url = "https://files.pythonhosted.org/packages/61/74/49f5d20c514ccc631b940cc9dfec45dcce418dc84a98463a2e2ebec33904/pycryptodomex-3.21.0-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:52e23a0a6e61691134aa8c8beba89de420602541afaae70f66e16060fdcd677e", size = 2257982 },
|
1857 |
{ url = "https://files.pythonhosted.org/packages/92/4b/d33ef74e2cc0025a259936661bb53432c5bbbadc561c5f2e023bcd73ce4c/pycryptodomex-3.21.0-cp36-abi3-win32.whl", hash = "sha256:a3d77919e6ff56d89aada1bd009b727b874d464cb0e2e3f00a49f7d2e709d76e", size = 1779052 },
|
1858 |
{ url = "https://files.pythonhosted.org/packages/5b/be/7c991840af1184009fc86267160948350d1bf875f153c97bb471ad944e40/pycryptodomex-3.21.0-cp36-abi3-win_amd64.whl", hash = "sha256:b0e9765f93fe4890f39875e6c90c96cb341767833cfa767f41b490b506fa9ec0", size = 1816307 },
|
1859 |
-
{ url = "https://files.pythonhosted.org/packages/af/ac/24125ad36778914a36f08d61ba5338cb9159382c638d9761ee19c8de822c/pycryptodomex-3.21.0-pp27-pypy_73-manylinux2010_x86_64.whl", hash = "sha256:feaecdce4e5c0045e7a287de0c4351284391fe170729aa9182f6bd967631b3a8", size = 1694999 },
|
1860 |
-
{ url = "https://files.pythonhosted.org/packages/93/73/be7a54a5903508070e5508925ba94493a1f326cfeecfff750e3eb250ea28/pycryptodomex-3.21.0-pp27-pypy_73-win32.whl", hash = "sha256:365aa5a66d52fd1f9e0530ea97f392c48c409c2f01ff8b9a39c73ed6f527d36c", size = 1769437 },
|
1861 |
{ url = "https://files.pythonhosted.org/packages/e5/9f/39a6187f3986841fa6a9f35c6fdca5030ef73ff708b45a993813a51d7d10/pycryptodomex-3.21.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3efddfc50ac0ca143364042324046800c126a1d63816d532f2e19e6f2d8c0c31", size = 1619607 },
|
1862 |
{ url = "https://files.pythonhosted.org/packages/f8/70/60bb08e9e9841b18d4669fb69d84b64ce900aacd7eb0ebebd4c7b9bdecd3/pycryptodomex-3.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df2608682db8279a9ebbaf05a72f62a321433522ed0e499bc486a6889b96bf3", size = 1653571 },
|
1863 |
{ url = "https://files.pythonhosted.org/packages/c9/6f/191b73509291c5ff0dddec9cc54797b1d73303c12b2e4017b24678e57099/pycryptodomex-3.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5823d03e904ea3e53aebd6799d6b8ec63b7675b5d2f4a4bd5e3adcb512d03b37", size = 1691548 },
|
@@ -2658,7 +2656,7 @@ wheels = [
|
|
2658 |
|
2659 |
[[package]]
|
2660 |
name = "transformers"
|
2661 |
-
version = "4.48.
|
2662 |
source = { registry = "https://pypi.org/simple" }
|
2663 |
dependencies = [
|
2664 |
{ name = "filelock" },
|
@@ -2672,9 +2670,9 @@ dependencies = [
|
|
2672 |
{ name = "tokenizers" },
|
2673 |
{ name = "tqdm" },
|
2674 |
]
|
2675 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
2676 |
wheels = [
|
2677 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2678 |
]
|
2679 |
|
2680 |
[package.optional-dependencies]
|
@@ -2731,7 +2729,7 @@ wheels = [
|
|
2731 |
|
2732 |
[[package]]
|
2733 |
name = "ultralytics"
|
2734 |
-
version = "8.3.
|
2735 |
source = { registry = "https://pypi.org/simple" }
|
2736 |
dependencies = [
|
2737 |
{ name = "matplotlib" },
|
@@ -2750,9 +2748,9 @@ dependencies = [
|
|
2750 |
{ name = "tqdm" },
|
2751 |
{ name = "ultralytics-thop" },
|
2752 |
]
|
2753 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
2754 |
wheels = [
|
2755 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2756 |
]
|
2757 |
|
2758 |
[[package]]
|
@@ -2779,26 +2777,26 @@ wheels = [
|
|
2779 |
|
2780 |
[[package]]
|
2781 |
name = "uv"
|
2782 |
-
version = "0.5.
|
2783 |
source = { registry = "https://pypi.org/simple" }
|
2784 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
2785 |
wheels = [
|
2786 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2787 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2788 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2789 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2790 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2791 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2792 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2793 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2794 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2795 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2796 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2797 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2798 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2799 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2800 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2801 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2802 |
]
|
2803 |
|
2804 |
[[package]]
|
@@ -2826,50 +2824,50 @@ wheels = [
|
|
2826 |
|
2827 |
[[package]]
|
2828 |
name = "websockets"
|
2829 |
-
version = "14.
|
2830 |
-
source = { registry = "https://pypi.org/simple" }
|
2831 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
2832 |
-
wheels = [
|
2833 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2834 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2835 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2836 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2837 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2838 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2839 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2840 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2841 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2842 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2843 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2844 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2845 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2846 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2847 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2848 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2849 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2850 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2851 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2852 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2853 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2854 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2855 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2856 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2857 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2858 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2859 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2860 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2861 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2862 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2863 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2864 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2865 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2866 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2867 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2868 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2869 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2870 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2871 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2872 |
-
{ url = "https://files.pythonhosted.org/packages/
|
2873 |
]
|
2874 |
|
2875 |
[[package]]
|
|
|
1480 |
|
1481 |
[[package]]
|
1482 |
name = "orjson"
|
1483 |
+
version = "3.10.15"
|
1484 |
+
source = { registry = "https://pypi.org/simple" }
|
1485 |
+
sdist = { url = "https://files.pythonhosted.org/packages/ae/f9/5dea21763eeff8c1590076918a446ea3d6140743e0e36f58f369928ed0f4/orjson-3.10.15.tar.gz", hash = "sha256:05ca7fe452a2e9d8d9d706a2984c95b9c2ebc5db417ce0b7a49b91d50642a23e", size = 5282482 }
|
1486 |
+
wheels = [
|
1487 |
+
{ url = "https://files.pythonhosted.org/packages/52/09/e5ff18ad009e6f97eb7edc5f67ef98b3ce0c189da9c3eaca1f9587cd4c61/orjson-3.10.15-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:552c883d03ad185f720d0c09583ebde257e41b9521b74ff40e08b7dec4559c04", size = 249532 },
|
1488 |
+
{ url = "https://files.pythonhosted.org/packages/bd/b8/a75883301fe332bd433d9b0ded7d2bb706ccac679602c3516984f8814fb5/orjson-3.10.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:616e3e8d438d02e4854f70bfdc03a6bcdb697358dbaa6bcd19cbe24d24ece1f8", size = 125229 },
|
1489 |
+
{ url = "https://files.pythonhosted.org/packages/83/4b/22f053e7a364cc9c685be203b1e40fc5f2b3f164a9b2284547504eec682e/orjson-3.10.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7c2c79fa308e6edb0ffab0a31fd75a7841bf2a79a20ef08a3c6e3b26814c8ca8", size = 150148 },
|
1490 |
+
{ url = "https://files.pythonhosted.org/packages/63/64/1b54fc75ca328b57dd810541a4035fe48c12a161d466e3cf5b11a8c25649/orjson-3.10.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:73cb85490aa6bf98abd20607ab5c8324c0acb48d6da7863a51be48505646c814", size = 139748 },
|
1491 |
+
{ url = "https://files.pythonhosted.org/packages/5e/ff/ff0c5da781807bb0a5acd789d9a7fbcb57f7b0c6e1916595da1f5ce69f3c/orjson-3.10.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:763dadac05e4e9d2bc14938a45a2d0560549561287d41c465d3c58aec818b164", size = 154559 },
|
1492 |
+
{ url = "https://files.pythonhosted.org/packages/4e/9a/11e2974383384ace8495810d4a2ebef5f55aacfc97b333b65e789c9d362d/orjson-3.10.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a330b9b4734f09a623f74a7490db713695e13b67c959713b78369f26b3dee6bf", size = 130349 },
|
1493 |
+
{ url = "https://files.pythonhosted.org/packages/2d/c4/dd9583aea6aefee1b64d3aed13f51d2aadb014028bc929fe52936ec5091f/orjson-3.10.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a61a4622b7ff861f019974f73d8165be1bd9a0855e1cad18ee167acacabeb061", size = 138514 },
|
1494 |
+
{ url = "https://files.pythonhosted.org/packages/53/3e/dcf1729230654f5c5594fc752de1f43dcf67e055ac0d300c8cdb1309269a/orjson-3.10.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:acd271247691574416b3228db667b84775c497b245fa275c6ab90dc1ffbbd2b3", size = 130940 },
|
1495 |
+
{ url = "https://files.pythonhosted.org/packages/e8/2b/b9759fe704789937705c8a56a03f6c03e50dff7df87d65cba9a20fec5282/orjson-3.10.15-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e4759b109c37f635aa5c5cc93a1b26927bfde24b254bcc0e1149a9fada253d2d", size = 414713 },
|
1496 |
+
{ url = "https://files.pythonhosted.org/packages/a7/6b/b9dfdbd4b6e20a59238319eb203ae07c3f6abf07eef909169b7a37ae3bba/orjson-3.10.15-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9e992fd5cfb8b9f00bfad2fd7a05a4299db2bbe92e6440d9dd2fab27655b3182", size = 141028 },
|
1497 |
+
{ url = "https://files.pythonhosted.org/packages/7c/b5/40f5bbea619c7caf75eb4d652a9821875a8ed04acc45fe3d3ef054ca69fb/orjson-3.10.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f95fb363d79366af56c3f26b71df40b9a583b07bbaaf5b317407c4d58497852e", size = 129715 },
|
1498 |
+
{ url = "https://files.pythonhosted.org/packages/38/60/2272514061cbdf4d672edbca6e59c7e01cd1c706e881427d88f3c3e79761/orjson-3.10.15-cp310-cp310-win32.whl", hash = "sha256:f9875f5fea7492da8ec2444839dcc439b0ef298978f311103d0b7dfd775898ab", size = 142473 },
|
1499 |
+
{ url = "https://files.pythonhosted.org/packages/11/5d/be1490ff7eafe7fef890eb4527cf5bcd8cfd6117f3efe42a3249ec847b60/orjson-3.10.15-cp310-cp310-win_amd64.whl", hash = "sha256:17085a6aa91e1cd70ca8533989a18b5433e15d29c574582f76f821737c8d5806", size = 133564 },
|
1500 |
+
{ url = "https://files.pythonhosted.org/packages/7a/a2/21b25ce4a2c71dbb90948ee81bd7a42b4fbfc63162e57faf83157d5540ae/orjson-3.10.15-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c4cc83960ab79a4031f3119cc4b1a1c627a3dc09df125b27c4201dff2af7eaa6", size = 249533 },
|
1501 |
+
{ url = "https://files.pythonhosted.org/packages/b2/85/2076fc12d8225698a51278009726750c9c65c846eda741e77e1761cfef33/orjson-3.10.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ddbeef2481d895ab8be5185f2432c334d6dec1f5d1933a9c83014d188e102cef", size = 125230 },
|
1502 |
+
{ url = "https://files.pythonhosted.org/packages/06/df/a85a7955f11274191eccf559e8481b2be74a7c6d43075d0a9506aa80284d/orjson-3.10.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e590a0477b23ecd5b0ac865b1b907b01b3c5535f5e8a8f6ab0e503efb896334", size = 150148 },
|
1503 |
+
{ url = "https://files.pythonhosted.org/packages/37/b3/94c55625a29b8767c0eed194cb000b3787e3c23b4cdd13be17bae6ccbb4b/orjson-3.10.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a6be38bd103d2fd9bdfa31c2720b23b5d47c6796bcb1d1b598e3924441b4298d", size = 139749 },
|
1504 |
+
{ url = "https://files.pythonhosted.org/packages/53/ba/c608b1e719971e8ddac2379f290404c2e914cf8e976369bae3cad88768b1/orjson-3.10.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ff4f6edb1578960ed628a3b998fa54d78d9bb3e2eb2cfc5c2a09732431c678d0", size = 154558 },
|
1505 |
+
{ url = "https://files.pythonhosted.org/packages/b2/c4/c1fb835bb23ad788a39aa9ebb8821d51b1c03588d9a9e4ca7de5b354fdd5/orjson-3.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0482b21d0462eddd67e7fce10b89e0b6ac56570424662b685a0d6fccf581e13", size = 130349 },
|
1506 |
+
{ url = "https://files.pythonhosted.org/packages/78/14/bb2b48b26ab3c570b284eb2157d98c1ef331a8397f6c8bd983b270467f5c/orjson-3.10.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bb5cc3527036ae3d98b65e37b7986a918955f85332c1ee07f9d3f82f3a6899b5", size = 138513 },
|
1507 |
+
{ url = "https://files.pythonhosted.org/packages/4a/97/d5b353a5fe532e92c46467aa37e637f81af8468aa894cd77d2ec8a12f99e/orjson-3.10.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d569c1c462912acdd119ccbf719cf7102ea2c67dd03b99edcb1a3048651ac96b", size = 130942 },
|
1508 |
+
{ url = "https://files.pythonhosted.org/packages/b5/5d/a067bec55293cca48fea8b9928cfa84c623be0cce8141d47690e64a6ca12/orjson-3.10.15-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:1e6d33efab6b71d67f22bf2962895d3dc6f82a6273a965fab762e64fa90dc399", size = 414717 },
|
1509 |
+
{ url = "https://files.pythonhosted.org/packages/6f/9a/1485b8b05c6b4c4db172c438cf5db5dcfd10e72a9bc23c151a1137e763e0/orjson-3.10.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:c33be3795e299f565681d69852ac8c1bc5c84863c0b0030b2b3468843be90388", size = 141033 },
|
1510 |
+
{ url = "https://files.pythonhosted.org/packages/f8/d2/fc67523656e43a0c7eaeae9007c8b02e86076b15d591e9be11554d3d3138/orjson-3.10.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:eea80037b9fae5339b214f59308ef0589fc06dc870578b7cce6d71eb2096764c", size = 129720 },
|
1511 |
+
{ url = "https://files.pythonhosted.org/packages/79/42/f58c7bd4e5b54da2ce2ef0331a39ccbbaa7699b7f70206fbf06737c9ed7d/orjson-3.10.15-cp311-cp311-win32.whl", hash = "sha256:d5ac11b659fd798228a7adba3e37c010e0152b78b1982897020a8e019a94882e", size = 142473 },
|
1512 |
+
{ url = "https://files.pythonhosted.org/packages/00/f8/bb60a4644287a544ec81df1699d5b965776bc9848d9029d9f9b3402ac8bb/orjson-3.10.15-cp311-cp311-win_amd64.whl", hash = "sha256:cf45e0214c593660339ef63e875f32ddd5aa3b4adc15e662cdb80dc49e194f8e", size = 133570 },
|
1513 |
+
{ url = "https://files.pythonhosted.org/packages/66/85/22fe737188905a71afcc4bf7cc4c79cd7f5bbe9ed1fe0aac4ce4c33edc30/orjson-3.10.15-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:9d11c0714fc85bfcf36ada1179400862da3288fc785c30e8297844c867d7505a", size = 249504 },
|
1514 |
+
{ url = "https://files.pythonhosted.org/packages/48/b7/2622b29f3afebe938a0a9037e184660379797d5fd5234e5998345d7a5b43/orjson-3.10.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dba5a1e85d554e3897fa9fe6fbcff2ed32d55008973ec9a2b992bd9a65d2352d", size = 125080 },
|
1515 |
+
{ url = "https://files.pythonhosted.org/packages/ce/8f/0b72a48f4403d0b88b2a41450c535b3e8989e8a2d7800659a967efc7c115/orjson-3.10.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7723ad949a0ea502df656948ddd8b392780a5beaa4c3b5f97e525191b102fff0", size = 150121 },
|
1516 |
+
{ url = "https://files.pythonhosted.org/packages/06/ec/acb1a20cd49edb2000be5a0404cd43e3c8aad219f376ac8c60b870518c03/orjson-3.10.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6fd9bc64421e9fe9bd88039e7ce8e58d4fead67ca88e3a4014b143cec7684fd4", size = 139796 },
|
1517 |
+
{ url = "https://files.pythonhosted.org/packages/33/e1/f7840a2ea852114b23a52a1c0b2bea0a1ea22236efbcdb876402d799c423/orjson-3.10.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dadba0e7b6594216c214ef7894c4bd5f08d7c0135f4dd0145600be4fbcc16767", size = 154636 },
|
1518 |
+
{ url = "https://files.pythonhosted.org/packages/fa/da/31543337febd043b8fa80a3b67de627669b88c7b128d9ad4cc2ece005b7a/orjson-3.10.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b48f59114fe318f33bbaee8ebeda696d8ccc94c9e90bc27dbe72153094e26f41", size = 130621 },
|
1519 |
+
{ url = "https://files.pythonhosted.org/packages/ed/78/66115dc9afbc22496530d2139f2f4455698be444c7c2475cb48f657cefc9/orjson-3.10.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:035fb83585e0f15e076759b6fedaf0abb460d1765b6a36f48018a52858443514", size = 138516 },
|
1520 |
+
{ url = "https://files.pythonhosted.org/packages/22/84/cd4f5fb5427ffcf823140957a47503076184cb1ce15bcc1165125c26c46c/orjson-3.10.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d13b7fe322d75bf84464b075eafd8e7dd9eae05649aa2a5354cfa32f43c59f17", size = 130762 },
|
1521 |
+
{ url = "https://files.pythonhosted.org/packages/93/1f/67596b711ba9f56dd75d73b60089c5c92057f1130bb3a25a0f53fb9a583b/orjson-3.10.15-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:7066b74f9f259849629e0d04db6609db4cf5b973248f455ba5d3bd58a4daaa5b", size = 414700 },
|
1522 |
+
{ url = "https://files.pythonhosted.org/packages/7c/0c/6a3b3271b46443d90efb713c3e4fe83fa8cd71cda0d11a0f69a03f437c6e/orjson-3.10.15-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:88dc3f65a026bd3175eb157fea994fca6ac7c4c8579fc5a86fc2114ad05705b7", size = 141077 },
|
1523 |
+
{ url = "https://files.pythonhosted.org/packages/3b/9b/33c58e0bfc788995eccd0d525ecd6b84b40d7ed182dd0751cd4c1322ac62/orjson-3.10.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b342567e5465bd99faa559507fe45e33fc76b9fb868a63f1642c6bc0735ad02a", size = 129898 },
|
1524 |
+
{ url = "https://files.pythonhosted.org/packages/01/c1/d577ecd2e9fa393366a1ea0a9267f6510d86e6c4bb1cdfb9877104cac44c/orjson-3.10.15-cp312-cp312-win32.whl", hash = "sha256:0a4f27ea5617828e6b58922fdbec67b0aa4bb844e2d363b9244c47fa2180e665", size = 142566 },
|
1525 |
+
{ url = "https://files.pythonhosted.org/packages/ed/eb/a85317ee1732d1034b92d56f89f1de4d7bf7904f5c8fb9dcdd5b1c83917f/orjson-3.10.15-cp312-cp312-win_amd64.whl", hash = "sha256:ef5b87e7aa9545ddadd2309efe6824bd3dd64ac101c15dae0f2f597911d46eaa", size = 133732 },
|
1526 |
]
|
1527 |
|
1528 |
[[package]]
|
|
|
1658 |
|
1659 |
[[package]]
|
1660 |
name = "prompt-toolkit"
|
1661 |
+
version = "3.0.50"
|
1662 |
source = { registry = "https://pypi.org/simple" }
|
1663 |
dependencies = [
|
1664 |
{ name = "wcwidth" },
|
1665 |
]
|
1666 |
+
sdist = { url = "https://files.pythonhosted.org/packages/a1/e1/bd15cb8ffdcfeeb2bdc215de3c3cffca11408d829e4b8416dcfe71ba8854/prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab", size = 429087 }
|
1667 |
wheels = [
|
1668 |
+
{ url = "https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198", size = 387816 },
|
1669 |
]
|
1670 |
|
1671 |
[[package]]
|
|
|
1856 |
{ url = "https://files.pythonhosted.org/packages/61/74/49f5d20c514ccc631b940cc9dfec45dcce418dc84a98463a2e2ebec33904/pycryptodomex-3.21.0-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:52e23a0a6e61691134aa8c8beba89de420602541afaae70f66e16060fdcd677e", size = 2257982 },
|
1857 |
{ url = "https://files.pythonhosted.org/packages/92/4b/d33ef74e2cc0025a259936661bb53432c5bbbadc561c5f2e023bcd73ce4c/pycryptodomex-3.21.0-cp36-abi3-win32.whl", hash = "sha256:a3d77919e6ff56d89aada1bd009b727b874d464cb0e2e3f00a49f7d2e709d76e", size = 1779052 },
|
1858 |
{ url = "https://files.pythonhosted.org/packages/5b/be/7c991840af1184009fc86267160948350d1bf875f153c97bb471ad944e40/pycryptodomex-3.21.0-cp36-abi3-win_amd64.whl", hash = "sha256:b0e9765f93fe4890f39875e6c90c96cb341767833cfa767f41b490b506fa9ec0", size = 1816307 },
|
|
|
|
|
1859 |
{ url = "https://files.pythonhosted.org/packages/e5/9f/39a6187f3986841fa6a9f35c6fdca5030ef73ff708b45a993813a51d7d10/pycryptodomex-3.21.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3efddfc50ac0ca143364042324046800c126a1d63816d532f2e19e6f2d8c0c31", size = 1619607 },
|
1860 |
{ url = "https://files.pythonhosted.org/packages/f8/70/60bb08e9e9841b18d4669fb69d84b64ce900aacd7eb0ebebd4c7b9bdecd3/pycryptodomex-3.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df2608682db8279a9ebbaf05a72f62a321433522ed0e499bc486a6889b96bf3", size = 1653571 },
|
1861 |
{ url = "https://files.pythonhosted.org/packages/c9/6f/191b73509291c5ff0dddec9cc54797b1d73303c12b2e4017b24678e57099/pycryptodomex-3.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5823d03e904ea3e53aebd6799d6b8ec63b7675b5d2f4a4bd5e3adcb512d03b37", size = 1691548 },
|
|
|
2656 |
|
2657 |
[[package]]
|
2658 |
name = "transformers"
|
2659 |
+
version = "4.48.1"
|
2660 |
source = { registry = "https://pypi.org/simple" }
|
2661 |
dependencies = [
|
2662 |
{ name = "filelock" },
|
|
|
2670 |
{ name = "tokenizers" },
|
2671 |
{ name = "tqdm" },
|
2672 |
]
|
2673 |
+
sdist = { url = "https://files.pythonhosted.org/packages/21/6b/caf620fae7fbf35947c81e7dd0834493b9ad9b71bb9e433025ac7a07e79a/transformers-4.48.1.tar.gz", hash = "sha256:7c1931facc3ee8adcbf86fc7a87461d54c1e40eca3bb57fef1ee9f3ecd32187e", size = 8365872 }
|
2674 |
wheels = [
|
2675 |
+
{ url = "https://files.pythonhosted.org/packages/7b/9f/92d3091c44cb19add044064af1bf1345cd35fbb84d32a3690f912800a295/transformers-4.48.1-py3-none-any.whl", hash = "sha256:24be0564b0a36d9e433d9a65de248f1545b6f6edce1737669605eb6a8141bbbb", size = 9665001 },
|
2676 |
]
|
2677 |
|
2678 |
[package.optional-dependencies]
|
|
|
2729 |
|
2730 |
[[package]]
|
2731 |
name = "ultralytics"
|
2732 |
+
version = "8.3.65"
|
2733 |
source = { registry = "https://pypi.org/simple" }
|
2734 |
dependencies = [
|
2735 |
{ name = "matplotlib" },
|
|
|
2748 |
{ name = "tqdm" },
|
2749 |
{ name = "ultralytics-thop" },
|
2750 |
]
|
2751 |
+
sdist = { url = "https://files.pythonhosted.org/packages/84/87/cdea9224ea038df9b9f116ef3bf62e4f560a1bf3f48e27c012a6ec74dc24/ultralytics-8.3.65.tar.gz", hash = "sha256:1e76b801da170f8acc75327e02830416f22eac2498ff89869f74664ad4513719", size = 787468 }
|
2752 |
wheels = [
|
2753 |
+
{ url = "https://files.pythonhosted.org/packages/8d/bd/96d49768f3587c0495cba426903777b321ecf053aaea838dfbb4b1a0736a/ultralytics-8.3.65-py3-none-any.whl", hash = "sha256:f9e55b0fd3f0843808f6808b202d9fd6dc88709a42df5f13cf7153e2eced3190", size = 911627 },
|
2754 |
]
|
2755 |
|
2756 |
[[package]]
|
|
|
2777 |
|
2778 |
[[package]]
|
2779 |
name = "uv"
|
2780 |
+
version = "0.5.21"
|
2781 |
source = { registry = "https://pypi.org/simple" }
|
2782 |
+
sdist = { url = "https://files.pythonhosted.org/packages/41/c1/d8da0122d14a48a7895241b1c15b027d7df6f56350cae614561c0567ecb2/uv-0.5.21.tar.gz", hash = "sha256:eb33043b42111ae3fef76906422b5c4247188e1ae1233da63be82cc64bb527d0", size = 2631880 }
|
2783 |
wheels = [
|
2784 |
+
{ url = "https://files.pythonhosted.org/packages/c5/c7/c7a787cc2c526442b2999cbebe526e24517b8812f3d545e90811e38c213a/uv-0.5.21-py3-none-linux_armv6l.whl", hash = "sha256:8ea7309dc1891e88276e207aa389cc4524ec7a7038a75bfd7c5a09ed3701316f", size = 15181071 },
|
2785 |
+
{ url = "https://files.pythonhosted.org/packages/5d/61/5a6796f31830898d0aa01e018d49bbbf39d61f2c19350663be16b6cfd1d9/uv-0.5.21-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ef4e579390a022efcbfe8720f51ad46fdff54caf982782967d5689841485ddd8", size = 15305687 },
|
2786 |
+
{ url = "https://files.pythonhosted.org/packages/65/37/a5a2e0d0776063e2fe1f6dfac21dd5e707d2df9c167572c416970dd3af34/uv-0.5.21-py3-none-macosx_11_0_arm64.whl", hash = "sha256:73c9d1bdbff989114c5c37649235c569f89b65bd2e57b75d8fdb73946ade7cbd", size = 14214520 },
|
2787 |
+
{ url = "https://files.pythonhosted.org/packages/15/ce/a844df3ea81c9370feed1ab0fd474776709a60f07b897c41fcdf0f260c0f/uv-0.5.21-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:6e97c68306c0583af1b14b5b801c3e18ab7bc349a4c9cdd8ab5f8f46348539c5", size = 14667101 },
|
2788 |
+
{ url = "https://files.pythonhosted.org/packages/88/53/d4a0cefd1927f6047500c95967d69d045b11839c9f48e2a448372498186f/uv-0.5.21-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4ecdf58adf9376f2b4f63e6538e38be0e77fcd3d5b07b3ee56a3c7cd1d9ca526", size = 14952637 },
|
2789 |
+
{ url = "https://files.pythonhosted.org/packages/4d/0a/a68d9142e429b4a28cebcae21c6dba262f7905772d950d076e0b161f4e0c/uv-0.5.21-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dafa7b5bb3ae8949ba100645b7a8d804f683547586024f73ad1b2d97a1aa9976", size = 15665199 },
|
2790 |
+
{ url = "https://files.pythonhosted.org/packages/18/9a/062eb481fe3661ee663751f0af9a6490014357592c9aea65d0261d385a40/uv-0.5.21-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:609299c04c00ece874b30abee9cb83753224a03e8d9191327397f33a92674a53", size = 16571172 },
|
2791 |
+
{ url = "https://files.pythonhosted.org/packages/94/f0/8e36e40acb289a39ed00a49122f6c3ad36993ff11d8197885877ace30b73/uv-0.5.21-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10232d5f24a1831f7ab3967f0b56f78681c520ff3391dcf5096eface94619e8e", size = 16292510 },
|
2792 |
+
{ url = "https://files.pythonhosted.org/packages/91/40/3b48d57626dcb306c9e5736d4148fb6eaf931d94dbeb810ad32e48b58ac8/uv-0.5.21-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f17d35ab4a099657ad55d3cfeaf91a35b929ae2cd2b22163710cdfec45ea3941", size = 20623325 },
|
2793 |
+
{ url = "https://files.pythonhosted.org/packages/5c/6f/86ee925f5e20df3aa366538a56e0d1bd5dfa9ef9d9bea57709480d47d72c/uv-0.5.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a1582f4964b1249b0e82ad0e60519a73392e099541a6db587e7333139255d50", size = 15952215 },
|
2794 |
+
{ url = "https://files.pythonhosted.org/packages/62/f9/094ceaf8f0380b5381918aeb65907ff1fd06150b51f3baafa879ed9fdf4a/uv-0.5.21-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:afd98237d97b92935c8d5a9bf28218b5ecb497af9a99ad0a740d0b71b51f864a", size = 14914771 },
|
2795 |
+
{ url = "https://files.pythonhosted.org/packages/0c/10/a5f73f433f29922b304eb95e7d6f18632734f92753c73017a8b05ce41795/uv-0.5.21-py3-none-musllinux_1_1_armv7l.whl", hash = "sha256:b317bfb7ba61e0396be5776f723e03e818a6393322f62828b67c16b565e1c0ec", size = 14904317 },
|
2796 |
+
{ url = "https://files.pythonhosted.org/packages/76/4e/b9be4fcc45a026f1e1a2975719ee5f0444dafda1b606c0871d0c24651115/uv-0.5.21-py3-none-musllinux_1_1_i686.whl", hash = "sha256:168fca3bad68f75518a168feeebfd2c0b104e9abc06a33caa710d0b2753db3aa", size = 15315311 },
|
2797 |
+
{ url = "https://files.pythonhosted.org/packages/a5/2d/74df7f292a7c15269bacd451a492520e26c4ef99b19c01fe96913506dea5/uv-0.5.21-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:f5ba5076b6b69161d318f5ddeff6dd935ab29a157ff10dd8756ed6dcb5d0a497", size = 16042115 },
|
2798 |
+
{ url = "https://files.pythonhosted.org/packages/4b/69/03731b38d23e7bed653f186be2ff2dfcdcef29a611f4937ff4bacff205fe/uv-0.5.21-py3-none-win32.whl", hash = "sha256:34944204a39b840fa0efb2ba27f4decce50115460c6b8e4e6ade6aae6246d0cf", size = 15262952 },
|
2799 |
+
{ url = "https://files.pythonhosted.org/packages/c2/8d/f6508e3c3fbc76b945365062ffff9fa6e60ad6516b26dae23a1c761d65c0/uv-0.5.21-py3-none-win_amd64.whl", hash = "sha256:36f21534a9e00a85cc532ef9575d3785a4e434a25daa93e51ebc08b54ade4991", size = 16625459 },
|
2800 |
]
|
2801 |
|
2802 |
[[package]]
|
|
|
2824 |
|
2825 |
[[package]]
|
2826 |
name = "websockets"
|
2827 |
+
version = "14.2"
|
2828 |
+
source = { registry = "https://pypi.org/simple" }
|
2829 |
+
sdist = { url = "https://files.pythonhosted.org/packages/94/54/8359678c726243d19fae38ca14a334e740782336c9f19700858c4eb64a1e/websockets-14.2.tar.gz", hash = "sha256:5059ed9c54945efb321f097084b4c7e52c246f2c869815876a69d1efc4ad6eb5", size = 164394 }
|
2830 |
+
wheels = [
|
2831 |
+
{ url = "https://files.pythonhosted.org/packages/28/fa/76607eb7dcec27b2d18d63f60a32e60e2b8629780f343bb83a4dbb9f4350/websockets-14.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e8179f95323b9ab1c11723e5d91a89403903f7b001828161b480a7810b334885", size = 163089 },
|
2832 |
+
{ url = "https://files.pythonhosted.org/packages/9e/00/ad2246b5030575b79e7af0721810fdaecaf94c4b2625842ef7a756fa06dd/websockets-14.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0d8c3e2cdb38f31d8bd7d9d28908005f6fa9def3324edb9bf336d7e4266fd397", size = 160741 },
|
2833 |
+
{ url = "https://files.pythonhosted.org/packages/72/f7/60f10924d333a28a1ff3fcdec85acf226281331bdabe9ad74947e1b7fc0a/websockets-14.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:714a9b682deb4339d39ffa674f7b674230227d981a37d5d174a4a83e3978a610", size = 160996 },
|
2834 |
+
{ url = "https://files.pythonhosted.org/packages/63/7c/c655789cf78648c01ac6ecbe2d6c18f91b75bdc263ffee4d08ce628d12f0/websockets-14.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2e53c72052f2596fb792a7acd9704cbc549bf70fcde8a99e899311455974ca3", size = 169974 },
|
2835 |
+
{ url = "https://files.pythonhosted.org/packages/fb/5b/013ed8b4611857ac92ac631079c08d9715b388bd1d88ec62e245f87a39df/websockets-14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e3fbd68850c837e57373d95c8fe352203a512b6e49eaae4c2f4088ef8cf21980", size = 168985 },
|
2836 |
+
{ url = "https://files.pythonhosted.org/packages/cd/33/aa3e32fd0df213a5a442310754fe3f89dd87a0b8e5b4e11e0991dd3bcc50/websockets-14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b27ece32f63150c268593d5fdb82819584831a83a3f5809b7521df0685cd5d8", size = 169297 },
|
2837 |
+
{ url = "https://files.pythonhosted.org/packages/93/17/dae0174883d6399f57853ac44abf5f228eaba86d98d160f390ffabc19b6e/websockets-14.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4daa0faea5424d8713142b33825fff03c736f781690d90652d2c8b053345b0e7", size = 169677 },
|
2838 |
+
{ url = "https://files.pythonhosted.org/packages/42/e2/0375af7ac00169b98647c804651c515054b34977b6c1354f1458e4116c1e/websockets-14.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:bc63cee8596a6ec84d9753fd0fcfa0452ee12f317afe4beae6b157f0070c6c7f", size = 169089 },
|
2839 |
+
{ url = "https://files.pythonhosted.org/packages/73/8d/80f71d2a351a44b602859af65261d3dde3a0ce4e76cf9383738a949e0cc3/websockets-14.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a570862c325af2111343cc9b0257b7119b904823c675b22d4ac547163088d0d", size = 169026 },
|
2840 |
+
{ url = "https://files.pythonhosted.org/packages/48/97/173b1fa6052223e52bb4054a141433ad74931d94c575e04b654200b98ca4/websockets-14.2-cp310-cp310-win32.whl", hash = "sha256:75862126b3d2d505e895893e3deac0a9339ce750bd27b4ba515f008b5acf832d", size = 163967 },
|
2841 |
+
{ url = "https://files.pythonhosted.org/packages/c0/5b/2fcf60f38252a4562b28b66077e0d2b48f91fef645d5f78874cd1dec807b/websockets-14.2-cp310-cp310-win_amd64.whl", hash = "sha256:cc45afb9c9b2dc0852d5c8b5321759cf825f82a31bfaf506b65bf4668c96f8b2", size = 164413 },
|
2842 |
+
{ url = "https://files.pythonhosted.org/packages/15/b6/504695fb9a33df0ca56d157f5985660b5fc5b4bf8c78f121578d2d653392/websockets-14.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3bdc8c692c866ce5fefcaf07d2b55c91d6922ac397e031ef9b774e5b9ea42166", size = 163088 },
|
2843 |
+
{ url = "https://files.pythonhosted.org/packages/81/26/ebfb8f6abe963c795122439c6433c4ae1e061aaedfc7eff32d09394afbae/websockets-14.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c93215fac5dadc63e51bcc6dceca72e72267c11def401d6668622b47675b097f", size = 160745 },
|
2844 |
+
{ url = "https://files.pythonhosted.org/packages/a1/c6/1435ad6f6dcbff80bb95e8986704c3174da8866ddb751184046f5c139ef6/websockets-14.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1c9b6535c0e2cf8a6bf938064fb754aaceb1e6a4a51a80d884cd5db569886910", size = 160995 },
|
2845 |
+
{ url = "https://files.pythonhosted.org/packages/96/63/900c27cfe8be1a1f2433fc77cd46771cf26ba57e6bdc7cf9e63644a61863/websockets-14.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a52a6d7cf6938e04e9dceb949d35fbdf58ac14deea26e685ab6368e73744e4c", size = 170543 },
|
2846 |
+
{ url = "https://files.pythonhosted.org/packages/00/8b/bec2bdba92af0762d42d4410593c1d7d28e9bfd952c97a3729df603dc6ea/websockets-14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9f05702e93203a6ff5226e21d9b40c037761b2cfb637187c9802c10f58e40473", size = 169546 },
|
2847 |
+
{ url = "https://files.pythonhosted.org/packages/6b/a9/37531cb5b994f12a57dec3da2200ef7aadffef82d888a4c29a0d781568e4/websockets-14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22441c81a6748a53bfcb98951d58d1af0661ab47a536af08920d129b4d1c3473", size = 169911 },
|
2848 |
+
{ url = "https://files.pythonhosted.org/packages/60/d5/a6eadba2ed9f7e65d677fec539ab14a9b83de2b484ab5fe15d3d6d208c28/websockets-14.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:efd9b868d78b194790e6236d9cbc46d68aba4b75b22497eb4ab64fa640c3af56", size = 170183 },
|
2849 |
+
{ url = "https://files.pythonhosted.org/packages/76/57/a338ccb00d1df881c1d1ee1f2a20c9c1b5b29b51e9e0191ee515d254fea6/websockets-14.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1a5a20d5843886d34ff8c57424cc65a1deda4375729cbca4cb6b3353f3ce4142", size = 169623 },
|
2850 |
+
{ url = "https://files.pythonhosted.org/packages/64/22/e5f7c33db0cb2c1d03b79fd60d189a1da044e2661f5fd01d629451e1db89/websockets-14.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:34277a29f5303d54ec6468fb525d99c99938607bc96b8d72d675dee2b9f5bf1d", size = 169583 },
|
2851 |
+
{ url = "https://files.pythonhosted.org/packages/aa/2e/2b4662237060063a22e5fc40d46300a07142afe30302b634b4eebd717c07/websockets-14.2-cp311-cp311-win32.whl", hash = "sha256:02687db35dbc7d25fd541a602b5f8e451a238ffa033030b172ff86a93cb5dc2a", size = 163969 },
|
2852 |
+
{ url = "https://files.pythonhosted.org/packages/94/a5/0cda64e1851e73fc1ecdae6f42487babb06e55cb2f0dc8904b81d8ef6857/websockets-14.2-cp311-cp311-win_amd64.whl", hash = "sha256:862e9967b46c07d4dcd2532e9e8e3c2825e004ffbf91a5ef9dde519ee2effb0b", size = 164408 },
|
2853 |
+
{ url = "https://files.pythonhosted.org/packages/c1/81/04f7a397653dc8bec94ddc071f34833e8b99b13ef1a3804c149d59f92c18/websockets-14.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1f20522e624d7ffbdbe259c6b6a65d73c895045f76a93719aa10cd93b3de100c", size = 163096 },
|
2854 |
+
{ url = "https://files.pythonhosted.org/packages/ec/c5/de30e88557e4d70988ed4d2eabd73fd3e1e52456b9f3a4e9564d86353b6d/websockets-14.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:647b573f7d3ada919fd60e64d533409a79dcf1ea21daeb4542d1d996519ca967", size = 160758 },
|
2855 |
+
{ url = "https://files.pythonhosted.org/packages/e5/8c/d130d668781f2c77d106c007b6c6c1d9db68239107c41ba109f09e6c218a/websockets-14.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6af99a38e49f66be5a64b1e890208ad026cda49355661549c507152113049990", size = 160995 },
|
2856 |
+
{ url = "https://files.pythonhosted.org/packages/a6/bc/f6678a0ff17246df4f06765e22fc9d98d1b11a258cc50c5968b33d6742a1/websockets-14.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:091ab63dfc8cea748cc22c1db2814eadb77ccbf82829bac6b2fbe3401d548eda", size = 170815 },
|
2857 |
+
{ url = "https://files.pythonhosted.org/packages/d8/b2/8070cb970c2e4122a6ef38bc5b203415fd46460e025652e1ee3f2f43a9a3/websockets-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b374e8953ad477d17e4851cdc66d83fdc2db88d9e73abf755c94510ebddceb95", size = 169759 },
|
2858 |
+
{ url = "https://files.pythonhosted.org/packages/81/da/72f7caabd94652e6eb7e92ed2d3da818626e70b4f2b15a854ef60bf501ec/websockets-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a39d7eceeea35db85b85e1169011bb4321c32e673920ae9c1b6e0978590012a3", size = 170178 },
|
2859 |
+
{ url = "https://files.pythonhosted.org/packages/31/e0/812725b6deca8afd3a08a2e81b3c4c120c17f68c9b84522a520b816cda58/websockets-14.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0a6f3efd47ffd0d12080594f434faf1cd2549b31e54870b8470b28cc1d3817d9", size = 170453 },
|
2860 |
+
{ url = "https://files.pythonhosted.org/packages/66/d3/8275dbc231e5ba9bb0c4f93144394b4194402a7a0c8ffaca5307a58ab5e3/websockets-14.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:065ce275e7c4ffb42cb738dd6b20726ac26ac9ad0a2a48e33ca632351a737267", size = 169830 },
|
2861 |
+
{ url = "https://files.pythonhosted.org/packages/a3/ae/e7d1a56755ae15ad5a94e80dd490ad09e345365199600b2629b18ee37bc7/websockets-14.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e9d0e53530ba7b8b5e389c02282f9d2aa47581514bd6049d3a7cffe1385cf5fe", size = 169824 },
|
2862 |
+
{ url = "https://files.pythonhosted.org/packages/b6/32/88ccdd63cb261e77b882e706108d072e4f1c839ed723bf91a3e1f216bf60/websockets-14.2-cp312-cp312-win32.whl", hash = "sha256:20e6dd0984d7ca3037afcb4494e48c74ffb51e8013cac71cf607fffe11df7205", size = 163981 },
|
2863 |
+
{ url = "https://files.pythonhosted.org/packages/b3/7d/32cdb77990b3bdc34a306e0a0f73a1275221e9a66d869f6ff833c95b56ef/websockets-14.2-cp312-cp312-win_amd64.whl", hash = "sha256:44bba1a956c2c9d268bdcdf234d5e5ff4c9b6dc3e300545cbe99af59dda9dcce", size = 164421 },
|
2864 |
+
{ url = "https://files.pythonhosted.org/packages/10/3d/91d3d2bb1325cd83e8e2c02d0262c7d4426dc8fa0831ef1aa4d6bf2041af/websockets-14.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:d7d9cafbccba46e768be8a8ad4635fa3eae1ffac4c6e7cb4eb276ba41297ed29", size = 160773 },
|
2865 |
+
{ url = "https://files.pythonhosted.org/packages/33/7c/cdedadfef7381939577858b1b5718a4ab073adbb584e429dd9d9dc9bfe16/websockets-14.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c76193c1c044bd1e9b3316dcc34b174bbf9664598791e6fb606d8d29000e070c", size = 161007 },
|
2866 |
+
{ url = "https://files.pythonhosted.org/packages/ca/35/7a20a3c450b27c04e50fbbfc3dfb161ed8e827b2a26ae31c4b59b018b8c6/websockets-14.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd475a974d5352390baf865309fe37dec6831aafc3014ffac1eea99e84e83fc2", size = 162264 },
|
2867 |
+
{ url = "https://files.pythonhosted.org/packages/e8/9c/e3f9600564b0c813f2448375cf28b47dc42c514344faed3a05d71fb527f9/websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2c6c0097a41968b2e2b54ed3424739aab0b762ca92af2379f152c1aef0187e1c", size = 161873 },
|
2868 |
+
{ url = "https://files.pythonhosted.org/packages/3f/37/260f189b16b2b8290d6ae80c9f96d8b34692cf1bb3475df54c38d3deb57d/websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d7ff794c8b36bc402f2e07c0b2ceb4a2424147ed4785ff03e2a7af03711d60a", size = 161818 },
|
2869 |
+
{ url = "https://files.pythonhosted.org/packages/ff/1e/e47dedac8bf7140e59aa6a679e850c4df9610ae844d71b6015263ddea37b/websockets-14.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:dec254fcabc7bd488dab64846f588fc5b6fe0d78f641180030f8ea27b76d72c3", size = 164465 },
|
2870 |
+
{ url = "https://files.pythonhosted.org/packages/7b/c8/d529f8a32ce40d98309f4470780631e971a5a842b60aec864833b3615786/websockets-14.2-py3-none-any.whl", hash = "sha256:7a6ceec4ea84469f15cf15807a747e9efe57e369c384fa86e022b3bea679b79b", size = 157416 },
|
2871 |
]
|
2872 |
|
2873 |
[[package]]
|