pythoncharmers-meta 0.7.5__tar.gz → 0.7.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/.gitignore +9 -0
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/PKG-INFO +4 -1
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/pyproject.toml +4 -1
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/src/pythoncharmers_meta/__init__.py +3 -0
- pythoncharmers_meta-0.7.6/src/pythoncharmers_meta/ai_magic.py +61 -0
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/src/pythoncharmers_meta/nb_magic.py +6 -9
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/uv.lock +216 -1
- pythoncharmers_meta-0.7.5/src/pythoncharmers_meta/ai_magic.py +0 -40
- pythoncharmers_meta-0.7.5/src/pythoncharmers_meta/source.ipynb +0 -632
- pythoncharmers_meta-0.7.5/src/pythoncharmers_meta/source2.ipynb +0 -1048
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/LICENSE +0 -0
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/MD_MAGIC.md +0 -0
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/README.md +0 -0
- {pythoncharmers_meta-0.7.5 → pythoncharmers_meta-0.7.6}/src/pythoncharmers_meta/.claude/settings.local.json +0 -0
|
@@ -160,3 +160,12 @@ cython_debug/
|
|
|
160
160
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
161
161
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
162
162
|
#.idea/
|
|
163
|
+
|
|
164
|
+
# macOS rubbish:
|
|
165
|
+
.DS_Store
|
|
166
|
+
Icon?
|
|
167
|
+
# Emacs, VIM, and VS Code rubbish:
|
|
168
|
+
*~
|
|
169
|
+
*.swp
|
|
170
|
+
*.swo
|
|
171
|
+
.vscode/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythoncharmers-meta
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.6
|
|
4
4
|
Summary: Meta package with dependencies for Python Charmers training courses
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -88,7 +88,9 @@ Requires-Dist: pyodbc>=5.2.0; extra == 'db'
|
|
|
88
88
|
Requires-Dist: redis>=5.2.1; extra == 'db'
|
|
89
89
|
Requires-Dist: sqlalchemy>=2.0.38; extra == 'db'
|
|
90
90
|
Provides-Extra: dl
|
|
91
|
+
Requires-Dist: albumentations>=2.0.8; extra == 'dl'
|
|
91
92
|
Requires-Dist: dataset>=1.5.2; extra == 'dl'
|
|
93
|
+
Requires-Dist: datasets>=2.2.1; extra == 'dl'
|
|
92
94
|
Requires-Dist: diskcache>=5.6.3; extra == 'dl'
|
|
93
95
|
Requires-Dist: eli5>=0.15.0; extra == 'dl'
|
|
94
96
|
Requires-Dist: evaluate>=0.4.3; extra == 'dl'
|
|
@@ -140,6 +142,7 @@ Requires-Dist: xarray>=2024.9.0; extra == 'gis'
|
|
|
140
142
|
Requires-Dist: zarr>=2.18.3; extra == 'gis'
|
|
141
143
|
Provides-Extra: ml
|
|
142
144
|
Requires-Dist: eli5>=0.15.0; extra == 'ml'
|
|
145
|
+
Requires-Dist: glum>=3.1.2; extra == 'ml'
|
|
143
146
|
Requires-Dist: joblib>=1.4.2; extra == 'ml'
|
|
144
147
|
Requires-Dist: pyod>=2.0.5; extra == 'ml'
|
|
145
148
|
Requires-Dist: scikit-learn>=1.6.1; extra == 'ml'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pythoncharmers-meta"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.6"
|
|
4
4
|
description = "Meta package with dependencies for Python Charmers training courses"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -77,6 +77,7 @@ gis = [
|
|
|
77
77
|
]
|
|
78
78
|
ml = [
|
|
79
79
|
"eli5>=0.15.0",
|
|
80
|
+
"glum>=3.1.2",
|
|
80
81
|
"joblib>=1.4.2",
|
|
81
82
|
"pyod>=2.0.5",
|
|
82
83
|
"scikit-learn>=1.6.1",
|
|
@@ -194,7 +195,9 @@ net = [
|
|
|
194
195
|
"uvicorn>=0.34.0",
|
|
195
196
|
]
|
|
196
197
|
dl = [
|
|
198
|
+
"albumentations>=2.0.8",
|
|
197
199
|
"dataset>=1.5.2",
|
|
200
|
+
"datasets>=2.2.1",
|
|
198
201
|
"diskcache>=5.6.3",
|
|
199
202
|
"eli5>=0.15.0",
|
|
200
203
|
"evaluate>=0.4.3",
|
|
@@ -37,6 +37,7 @@ path and/or file that %code and %md query. To get help on these, run:
|
|
|
37
37
|
# Import version from package metadata (single source of truth)
|
|
38
38
|
try:
|
|
39
39
|
from importlib.metadata import version, PackageNotFoundError
|
|
40
|
+
|
|
40
41
|
try:
|
|
41
42
|
__version__ = version("pythoncharmers-meta")
|
|
42
43
|
except PackageNotFoundError:
|
|
@@ -47,6 +48,7 @@ except ImportError:
|
|
|
47
48
|
# Python < 3.8 fallback
|
|
48
49
|
try:
|
|
49
50
|
import pkg_resources
|
|
51
|
+
|
|
50
52
|
__version__ = pkg_resources.get_distribution("pythoncharmers-meta").version
|
|
51
53
|
except Exception:
|
|
52
54
|
__version__ = "unknown"
|
|
@@ -58,6 +60,7 @@ from .nb_magic import NotebookMagic
|
|
|
58
60
|
|
|
59
61
|
try:
|
|
60
62
|
from .ai_magic import AIMagic
|
|
63
|
+
|
|
61
64
|
__all__.append("AIMagic")
|
|
62
65
|
except Exception as e:
|
|
63
66
|
print(e)
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
from IPython.core.magic import Magics, magics_class, line_cell_magic
|
|
2
|
+
from IPython.core.magic_arguments import argument, magic_arguments, parse_argstring
|
|
3
|
+
import llm
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@magics_class
|
|
7
|
+
class AIMagic(Magics):
|
|
8
|
+
def __init__(self, shell, default_model_name="gpt-4o-mini"):
|
|
9
|
+
# You must call the parent constructor
|
|
10
|
+
super().__init__(shell)
|
|
11
|
+
self.default_model = llm.get_model(default_model_name)
|
|
12
|
+
|
|
13
|
+
@magic_arguments()
|
|
14
|
+
@argument("-m", "--model", type=str, help="Model name to use")
|
|
15
|
+
@argument("-t", "--temperature", type=float, help="Sampling temperature")
|
|
16
|
+
@argument(
|
|
17
|
+
"prompt",
|
|
18
|
+
nargs="*",
|
|
19
|
+
help="Prompt text (required for line magic, optional for cell magic)",
|
|
20
|
+
)
|
|
21
|
+
@line_cell_magic
|
|
22
|
+
def ai(self, line, cell=None):
|
|
23
|
+
# Parse arguments
|
|
24
|
+
args = parse_argstring(self.ai, line)
|
|
25
|
+
options = vars(args)
|
|
26
|
+
|
|
27
|
+
# Combine cell content and line prompt
|
|
28
|
+
line_prompt = " ".join(args.prompt)
|
|
29
|
+
|
|
30
|
+
# Check if we have any prompt content
|
|
31
|
+
if not line_prompt and cell is None:
|
|
32
|
+
print("Error: No prompt provided.")
|
|
33
|
+
print("\nUsage:")
|
|
34
|
+
print(" Line magic: %ai <prompt>")
|
|
35
|
+
print(" Cell magic: %%ai [prompt]")
|
|
36
|
+
print(" <cell content as prompt>")
|
|
37
|
+
print("\nOptions:")
|
|
38
|
+
print(" -m, --model <name> Model name to use")
|
|
39
|
+
print(" -t, --temperature <float> Sampling temperature")
|
|
40
|
+
print("\nExample:")
|
|
41
|
+
print(" %ai What is Python?")
|
|
42
|
+
print(" %ai -m gpt-4 Explain recursion")
|
|
43
|
+
return
|
|
44
|
+
|
|
45
|
+
prompt = line_prompt + ("" if cell is None else "\n\n" + cell)
|
|
46
|
+
|
|
47
|
+
if "model" in options:
|
|
48
|
+
model = llm.get_model(options["model"])
|
|
49
|
+
else:
|
|
50
|
+
model = self.default_model
|
|
51
|
+
|
|
52
|
+
# Prepare options to pass to llm
|
|
53
|
+
completion_args = {
|
|
54
|
+
k: v
|
|
55
|
+
for k, v in options.items()
|
|
56
|
+
if k not in {"prompt", "model"} and v is not None
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
# Call llm and return response
|
|
60
|
+
response = model.prompt(prompt, **completion_args)
|
|
61
|
+
print(response.text())
|
|
@@ -531,9 +531,6 @@ class NotebookMagic(Magics):
|
|
|
531
531
|
|
|
532
532
|
Note: After running, convert the cell to Markdown with Esc M in Jupyter.
|
|
533
533
|
"""
|
|
534
|
-
# Store original arg_s for better error messages
|
|
535
|
-
original_arg_s = arg_s
|
|
536
|
-
|
|
537
534
|
# Check for common mistakes (but not --list itself!)
|
|
538
535
|
if "--list" not in arg_s and (
|
|
539
536
|
"--lsit" in arg_s
|
|
@@ -542,9 +539,9 @@ class NotebookMagic(Magics):
|
|
|
542
539
|
or "--lits" in arg_s
|
|
543
540
|
):
|
|
544
541
|
raise UsageError(
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
542
|
+
"Invalid option. Did you mean '--list'?\n"
|
|
543
|
+
"Usage: %md --list or %md m1-m3 or %md -1 2-\n"
|
|
544
|
+
"See %md? for full documentation."
|
|
548
545
|
)
|
|
549
546
|
|
|
550
547
|
# Check if user is trying to use old %mdat syntax
|
|
@@ -736,7 +733,7 @@ class NotebookMagic(Magics):
|
|
|
736
733
|
if content_hash not in seen_content:
|
|
737
734
|
seen_content.add(content_hash)
|
|
738
735
|
contents.append(content)
|
|
739
|
-
except (ValueError, IndexError)
|
|
736
|
+
except (ValueError, IndexError):
|
|
740
737
|
# Check if it's a markdown index that's out of range
|
|
741
738
|
if "m" in arg.lower():
|
|
742
739
|
all_markdown = get_markdown_cells(nb)
|
|
@@ -764,8 +761,8 @@ class NotebookMagic(Magics):
|
|
|
764
761
|
)
|
|
765
762
|
else:
|
|
766
763
|
raise UsageError(
|
|
767
|
-
|
|
768
|
-
|
|
764
|
+
"No markdown cells found for the specified ranges.\n"
|
|
765
|
+
"Use '%md --list' to see available markdown cells."
|
|
769
766
|
)
|
|
770
767
|
return
|
|
771
768
|
|
|
@@ -306,6 +306,38 @@ wheels = [
|
|
|
306
306
|
{ url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929, upload-time = "2024-07-26T18:15:02.05Z" },
|
|
307
307
|
]
|
|
308
308
|
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "albucore"
|
|
311
|
+
version = "0.0.24"
|
|
312
|
+
source = { registry = "https://pypi.org/simple" }
|
|
313
|
+
dependencies = [
|
|
314
|
+
{ name = "numpy" },
|
|
315
|
+
{ name = "opencv-python-headless" },
|
|
316
|
+
{ name = "simsimd" },
|
|
317
|
+
{ name = "stringzilla" },
|
|
318
|
+
]
|
|
319
|
+
sdist = { url = "https://files.pythonhosted.org/packages/13/69/d4cbcf2a5768bf91cd14ffef783520458431e5d2b22fbc08418d3ba09a88/albucore-0.0.24.tar.gz", hash = "sha256:f2cab5431fadf94abf87fd0c89d9f59046e49fe5de34afea8f89bc8390253746", size = 16981, upload-time = "2025-03-09T18:46:51.409Z" }
|
|
320
|
+
wheels = [
|
|
321
|
+
{ url = "https://files.pythonhosted.org/packages/0a/e2/91f145e1f32428e9e1f21f46a7022ffe63d11f549ee55c3b9265ff5207fc/albucore-0.0.24-py3-none-any.whl", hash = "sha256:adef6e434e50e22c2ee127b7a3e71f2e35fa088bcf54431e18970b62d97d0005", size = 15372, upload-time = "2025-03-09T18:46:50.177Z" },
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "albumentations"
|
|
326
|
+
version = "2.0.8"
|
|
327
|
+
source = { registry = "https://pypi.org/simple" }
|
|
328
|
+
dependencies = [
|
|
329
|
+
{ name = "albucore" },
|
|
330
|
+
{ name = "numpy" },
|
|
331
|
+
{ name = "opencv-python-headless" },
|
|
332
|
+
{ name = "pydantic" },
|
|
333
|
+
{ name = "pyyaml" },
|
|
334
|
+
{ name = "scipy" },
|
|
335
|
+
]
|
|
336
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f4/f4/85eb56c3217b53bcfc2d12e840a0b18ca60902086321cafa5a730f9c0470/albumentations-2.0.8.tar.gz", hash = "sha256:4da95e658e490de3c34af8fcdffed09e36aa8a4edd06ca9f9e7e3ea0b0b16856", size = 354460, upload-time = "2025-05-27T21:23:17.415Z" }
|
|
337
|
+
wheels = [
|
|
338
|
+
{ url = "https://files.pythonhosted.org/packages/8e/64/013409c451a44b61310fb757af4527f3de57fc98a00f40448de28b864290/albumentations-2.0.8-py3-none-any.whl", hash = "sha256:c4c4259aaf04a7386ad85c7fdcb73c6c7146ca3057446b745cc035805acb1017", size = 369423, upload-time = "2025-05-27T21:23:15.609Z" },
|
|
339
|
+
]
|
|
340
|
+
|
|
309
341
|
[[package]]
|
|
310
342
|
name = "alembic"
|
|
311
343
|
version = "1.14.1"
|
|
@@ -5015,6 +5047,16 @@ wheels = [
|
|
|
5015
5047
|
{ url = "https://files.pythonhosted.org/packages/71/96/d5d8859a6dac29f8ebc815ff8e75770bd513db9f08d7a711e21ae562a948/netCDF4-1.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30d20e56b9ba2c48884eb89c91b63e6c0612b4927881707e34402719153ef17f", size = 9378149, upload-time = "2024-10-22T19:01:04.924Z" },
|
|
5016
5048
|
{ url = "https://files.pythonhosted.org/packages/d1/80/b9c19f1bb4ac6c5fa6f94a4f278bc68a778473d1814a86a375d7cffa193a/netCDF4-1.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d6bfd38ba0bde04d56f06c1554714a2ea9dab75811c89450dc3ec57a9d36b80", size = 9254471, upload-time = "2024-10-22T19:01:07.041Z" },
|
|
5017
5049
|
{ url = "https://files.pythonhosted.org/packages/66/b5/e04550fd53de57001dbd5a87242da7ff784c80790adc48897977b6ccf891/netCDF4-1.7.2-cp313-cp313-win_amd64.whl", hash = "sha256:5c5fbee6134ee1246c397e1508e5297d825aa19221fdf3fa8dc9727ad824d7a5", size = 6990521, upload-time = "2024-10-23T15:02:27.549Z" },
|
|
5050
|
+
{ url = "https://files.pythonhosted.org/packages/d6/dd/c713bfe9aa122fe2d1e3c9320fc436b5ad922c93df24d707d9fffb66b0e2/netcdf4-1.7.2-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:16c3ba053930ed990e58827de6ab03184e407549004fb77438b98e5777e8cf3b", size = 2803405, upload-time = "2025-10-13T18:32:13.58Z" },
|
|
5051
|
+
{ url = "https://files.pythonhosted.org/packages/75/b7/6b66ad69d034dc81ee2a1617ebd892cf25ff415dc7aa003323884c4a77f0/netcdf4-1.7.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:142c9ed2db8a87a15ae0530c8a99f4f045435b0f495df733e9f111995e389d4f", size = 2417569, upload-time = "2025-10-13T18:32:15.698Z" },
|
|
5052
|
+
{ url = "https://files.pythonhosted.org/packages/50/e4/7238549f0625042f8d94ec2f58977bb186a8e2acf4d65b2ad1de2a58d672/netcdf4-1.7.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:76cb3bbbbe4cd5fca612578eb105c16217380f7f93af2b549e8f38296bc906bb", size = 9682157, upload-time = "2025-10-13T18:32:17.138Z" },
|
|
5053
|
+
{ url = "https://files.pythonhosted.org/packages/49/3c/1129ea3943f6f5736be08c2d79ca5965d0a55adbfc38f313a59938a7a62a/netcdf4-1.7.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:835ae7bcef666c967241baeeee9bef9376ddb7527297b24735597131f6f628e2", size = 9520752, upload-time = "2025-10-13T18:32:19.493Z" },
|
|
5054
|
+
{ url = "https://files.pythonhosted.org/packages/0b/eb/144709b60d89eb8995236f49a4e446be87f15b0d63f05dbda55e1315dba3/netcdf4-1.7.2-cp310-cp310-win_amd64.whl", hash = "sha256:73bd7eda3cefb04c4076e76911f652f5ed56bf434e0a3958e367932953437557", size = 7215191, upload-time = "2025-10-13T18:32:21.112Z" },
|
|
5055
|
+
{ url = "https://files.pythonhosted.org/packages/84/0a/182bb4fe5639699ba39d558b553b8e6f04fbfea6cf78404c0f21ef149bf7/netcdf4-1.7.2-cp311-abi3-macosx_13_0_x86_64.whl", hash = "sha256:7e81c3c47f2772eab0b93fba8bb05b17b58dce17720e1bed25e9d76551deecd0", size = 2751391, upload-time = "2025-10-13T18:32:22.749Z" },
|
|
5056
|
+
{ url = "https://files.pythonhosted.org/packages/2d/1f/54ac27c791360f7452ca27ed1cb2917946bbe1ea4337c590a5abcef6332d/netcdf4-1.7.2-cp311-abi3-macosx_14_0_arm64.whl", hash = "sha256:cb2791dba37fc98fd1ac4e236c97822909f54efbcdf7f1415c9777810e0a28f4", size = 2387513, upload-time = "2025-10-13T18:32:27.499Z" },
|
|
5057
|
+
{ url = "https://files.pythonhosted.org/packages/5c/5e/9bf3008a9e45c08f4c9fedce4d6f722ef5d970f56a9c5eb375a200dd2b66/netcdf4-1.7.2-cp311-abi3-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf11480f6b8a5b246818ffff6b4d90481e51f8b9555b41af0c372eb0aaf8b65f", size = 9621674, upload-time = "2025-10-13T18:32:29.193Z" },
|
|
5058
|
+
{ url = "https://files.pythonhosted.org/packages/a1/75/46871e85f2bbfb1efe229623d25d7c9daa17e2e968d5235572b2c8bb53e8/netcdf4-1.7.2-cp311-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1ccc05328a8ff31921b539821791aeb20b054879f3fdf6d1d505bf6422824fec", size = 9453759, upload-time = "2025-10-13T18:32:31.136Z" },
|
|
5059
|
+
{ url = "https://files.pythonhosted.org/packages/cd/10/c52f12297965938d9b9be666ea1f9d8340c2aea31d6909d90aa650847248/netcdf4-1.7.2-cp311-abi3-win_amd64.whl", hash = "sha256:999bfc4acebf400ed724d5e7329e2e768accc7ee1fa1d82d505da782f730301b", size = 7148514, upload-time = "2025-10-13T18:32:33.121Z" },
|
|
5018
5060
|
]
|
|
5019
5061
|
|
|
5020
5062
|
[[package]]
|
|
@@ -5275,6 +5317,23 @@ wheels = [
|
|
|
5275
5317
|
{ url = "https://files.pythonhosted.org/packages/58/c1/dfb16b3432810fc9758564f9d1a4dbce6b93b7fb763ba57530c7fc48316d/openai-1.86.0-py3-none-any.whl", hash = "sha256:c8889c39410621fe955c230cc4c21bfe36ec887f4e60a957de05f507d7e1f349", size = 730296, upload-time = "2025-06-10T16:50:30.495Z" },
|
|
5276
5318
|
]
|
|
5277
5319
|
|
|
5320
|
+
[[package]]
|
|
5321
|
+
name = "opencv-python-headless"
|
|
5322
|
+
version = "4.12.0.88"
|
|
5323
|
+
source = { registry = "https://pypi.org/simple" }
|
|
5324
|
+
dependencies = [
|
|
5325
|
+
{ name = "numpy" },
|
|
5326
|
+
]
|
|
5327
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a4/63/6861102ec149c3cd298f4d1ea7ce9d6adbc7529221606ff1dab991a19adb/opencv-python-headless-4.12.0.88.tar.gz", hash = "sha256:cfdc017ddf2e59b6c2f53bc12d74b6b0be7ded4ec59083ea70763921af2b6c09", size = 95379675, upload-time = "2025-07-07T09:21:06.815Z" }
|
|
5328
|
+
wheels = [
|
|
5329
|
+
{ url = "https://files.pythonhosted.org/packages/f7/7d/414e243c5c8216a5277afd104a319cc1291c5e23f5eeef512db5629ee7f4/opencv_python_headless-4.12.0.88-cp37-abi3-macosx_13_0_arm64.whl", hash = "sha256:1e58d664809b3350c1123484dd441e1667cd7bed3086db1b9ea1b6f6cb20b50e", size = 37877864, upload-time = "2025-07-07T09:14:41.693Z" },
|
|
5330
|
+
{ url = "https://files.pythonhosted.org/packages/05/14/7e162714beed1cd5e7b5eb66fcbcba2f065c51b1d9da2463024c84d2f7c0/opencv_python_headless-4.12.0.88-cp37-abi3-macosx_13_0_x86_64.whl", hash = "sha256:365bb2e486b50feffc2d07a405b953a8f3e8eaa63865bc650034e5c71e7a5154", size = 57326608, upload-time = "2025-07-07T09:14:51.885Z" },
|
|
5331
|
+
{ url = "https://files.pythonhosted.org/packages/69/4e/116720df7f1f7f3b59abc608ca30fbec9d2b3ae810afe4e4d26483d9dfa0/opencv_python_headless-4.12.0.88-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:aeb4b13ecb8b4a0beb2668ea07928160ea7c2cd2d9b5ef571bbee6bafe9cc8d0", size = 33145800, upload-time = "2025-07-07T09:15:00.367Z" },
|
|
5332
|
+
{ url = "https://files.pythonhosted.org/packages/89/53/e19c21e0c4eb1275c3e2c97b081103b6dfb3938172264d283a519bf728b9/opencv_python_headless-4.12.0.88-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:236c8df54a90f4d02076e6f9c1cc763d794542e886c576a6fee46ec8ff75a7a9", size = 54023419, upload-time = "2025-07-07T09:15:10.164Z" },
|
|
5333
|
+
{ url = "https://files.pythonhosted.org/packages/bf/9c/a76fd5414de6ec9f21f763a600058a0c3e290053cea87e0275692b1375c0/opencv_python_headless-4.12.0.88-cp37-abi3-win32.whl", hash = "sha256:fde2cf5c51e4def5f2132d78e0c08f9c14783cd67356922182c6845b9af87dbd", size = 30225230, upload-time = "2025-07-07T09:15:17.045Z" },
|
|
5334
|
+
{ url = "https://files.pythonhosted.org/packages/f2/35/0858e9e71b36948eafbc5e835874b63e515179dc3b742cbe3d76bc683439/opencv_python_headless-4.12.0.88-cp37-abi3-win_amd64.whl", hash = "sha256:86b413bdd6c6bf497832e346cd5371995de148e579b9774f8eba686dee3f5528", size = 38923559, upload-time = "2025-07-07T09:15:25.229Z" },
|
|
5335
|
+
]
|
|
5336
|
+
|
|
5278
5337
|
[[package]]
|
|
5279
5338
|
name = "openpyxl"
|
|
5280
5339
|
version = "3.1.5"
|
|
@@ -6943,7 +7002,7 @@ wheels = [
|
|
|
6943
7002
|
|
|
6944
7003
|
[[package]]
|
|
6945
7004
|
name = "pythoncharmers-meta"
|
|
6946
|
-
version = "0.7.
|
|
7005
|
+
version = "0.7.6"
|
|
6947
7006
|
source = { editable = "." }
|
|
6948
7007
|
dependencies = [
|
|
6949
7008
|
{ name = "black" },
|
|
@@ -7036,7 +7095,9 @@ db = [
|
|
|
7036
7095
|
{ name = "sqlalchemy" },
|
|
7037
7096
|
]
|
|
7038
7097
|
dl = [
|
|
7098
|
+
{ name = "albumentations" },
|
|
7039
7099
|
{ name = "dataset" },
|
|
7100
|
+
{ name = "datasets" },
|
|
7040
7101
|
{ name = "diskcache" },
|
|
7041
7102
|
{ name = "eli5" },
|
|
7042
7103
|
{ name = "evaluate" },
|
|
@@ -7091,6 +7152,7 @@ gis = [
|
|
|
7091
7152
|
]
|
|
7092
7153
|
ml = [
|
|
7093
7154
|
{ name = "eli5" },
|
|
7155
|
+
{ name = "glum" },
|
|
7094
7156
|
{ name = "joblib" },
|
|
7095
7157
|
{ name = "pyod" },
|
|
7096
7158
|
{ name = "scikit-learn" },
|
|
@@ -7209,6 +7271,7 @@ requires-dist = [
|
|
|
7209
7271
|
{ name = "aiofiles", marker = "extra == 'net'", specifier = ">=24.1.0" },
|
|
7210
7272
|
{ name = "aiometer", marker = "extra == 'net'", specifier = ">=0.5.0" },
|
|
7211
7273
|
{ name = "aiopath", marker = "extra == 'net'", specifier = ">=0.6.11" },
|
|
7274
|
+
{ name = "albumentations", marker = "extra == 'dl'", specifier = ">=2.0.8" },
|
|
7212
7275
|
{ name = "alembic", marker = "extra == 'web'", specifier = ">=1.13.2" },
|
|
7213
7276
|
{ name = "altair", marker = "extra == 'analytics'", specifier = ">=5.4.1" },
|
|
7214
7277
|
{ name = "altair", marker = "extra == 'scieng'", specifier = ">=5.4.1" },
|
|
@@ -7240,6 +7303,7 @@ requires-dist = [
|
|
|
7240
7303
|
{ name = "dask-image", marker = "extra == 'gis'", specifier = ">=2024.5.3" },
|
|
7241
7304
|
{ name = "dask-image", marker = "extra == 'scieng'", specifier = ">=2024.5.3" },
|
|
7242
7305
|
{ name = "dataset", marker = "extra == 'dl'", specifier = ">=1.5.2" },
|
|
7306
|
+
{ name = "datasets", marker = "extra == 'dl'", specifier = ">=2.2.1" },
|
|
7243
7307
|
{ name = "datashader", marker = "extra == 'gis'", specifier = ">=0.16.3" },
|
|
7244
7308
|
{ name = "descartes", marker = "extra == 'gis'", specifier = ">=1.1.0" },
|
|
7245
7309
|
{ name = "diskcache", specifier = ">=5.6.3" },
|
|
@@ -7272,6 +7336,7 @@ requires-dist = [
|
|
|
7272
7336
|
{ name = "geopandas", marker = "extra == 'gis'", specifier = ">=1.0.1" },
|
|
7273
7337
|
{ name = "geopy", marker = "extra == 'gis'", specifier = ">=2.4.1" },
|
|
7274
7338
|
{ name = "glum", marker = "extra == 'analytics'", specifier = ">=3.1.2" },
|
|
7339
|
+
{ name = "glum", marker = "extra == 'ml'", specifier = ">=3.1.2" },
|
|
7275
7340
|
{ name = "glum", marker = "extra == 'scieng'", specifier = ">=3.1.2" },
|
|
7276
7341
|
{ name = "gprof2dot", marker = "extra == 'testing'", specifier = ">=2024.6.6" },
|
|
7277
7342
|
{ name = "graphviz", marker = "extra == 'analytics'", specifier = ">=0.20.3" },
|
|
@@ -8609,6 +8674,84 @@ wheels = [
|
|
|
8609
8674
|
{ url = "https://files.pythonhosted.org/packages/0d/e7/f9fafbd4f39793a20cc52e77bbd766f7384312526d402c382928dc7667f6/simplejson-3.19.3-py3-none-any.whl", hash = "sha256:49cc4c7b940d43bd12bf87ec63f28cbc4964fc4e12c031cc8cd01650f43eb94e", size = 57004, upload-time = "2024-08-14T15:18:06.206Z" },
|
|
8610
8675
|
]
|
|
8611
8676
|
|
|
8677
|
+
[[package]]
|
|
8678
|
+
name = "simsimd"
|
|
8679
|
+
version = "6.5.3"
|
|
8680
|
+
source = { registry = "https://pypi.org/simple" }
|
|
8681
|
+
sdist = { url = "https://files.pythonhosted.org/packages/df/2f/5a9ccc385f4d6e30aac2b843ef57ba3668ea86756f77f6a9312a3c94f43d/simsimd-6.5.3.tar.gz", hash = "sha256:5ff341e84fe1c46e7268ee9e31f885936b29c38ce59f423433aef5f4bb5bfd18", size = 184865, upload-time = "2025-09-06T16:17:44.761Z" }
|
|
8682
|
+
wheels = [
|
|
8683
|
+
{ url = "https://files.pythonhosted.org/packages/27/4f/308f16168d784c29a05f0a5f86a5763ec2ab2d1da9029b632eccd10e9bbd/simsimd-6.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:769696d4ca5de461275fe75c82d255ec4e5ffab502cf1e6b8d641508327e2f01", size = 179121, upload-time = "2025-09-06T16:14:50.57Z" },
|
|
8684
|
+
{ url = "https://files.pythonhosted.org/packages/26/14/f2a72c689285738012bca78b8feff8a4e21a7bda9621188efb8fa121eb4d/simsimd-6.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ac439ba9fc08dce8bc8cb8dcf78ddd933f74a59aa9037bb5e7d5c1c6254cf28", size = 134157, upload-time = "2025-09-06T16:14:53.588Z" },
|
|
8685
|
+
{ url = "https://files.pythonhosted.org/packages/8c/6d/34ae09ff3045a0287ca01bcd5eedafce05f01fe6c8233d28091846ce25ba/simsimd-6.5.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7f1545fc97fa32b2af081bbc9841d86025c4f6a623fc084d6dc7af6c138b1fa1", size = 562475, upload-time = "2025-09-06T16:14:54.911Z" },
|
|
8686
|
+
{ url = "https://files.pythonhosted.org/packages/65/c3/f9cf30016eae80e90a795ffbc089576c47b7e0d6ae1a71e2384df34a5a80/simsimd-6.5.3-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:2bd844a68ea1cbe8905a80b724648613e61addf236a635339ea06dee0bae73c2", size = 355106, upload-time = "2025-09-06T16:14:56.539Z" },
|
|
8687
|
+
{ url = "https://files.pythonhosted.org/packages/2c/9e/2f672cbc693eb9488fdd8a30ee3f006602fc51011be8cc30d43529d7ff72/simsimd-6.5.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9bd8cb1eeb0982363037202d76305fd6df88d86f02ca38fea10b1c69716d6cec", size = 410903, upload-time = "2025-09-06T16:14:58.016Z" },
|
|
8688
|
+
{ url = "https://files.pythonhosted.org/packages/47/b5/89ddc3c156c391fc22912c1a9e64a36b8781fb1d45a0c2bac57960d48b50/simsimd-6.5.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c9aba7081452e66db9c484778c969c294006b9aebf59143344e559c3a7254e65", size = 367470, upload-time = "2025-09-06T16:14:59.83Z" },
|
|
8689
|
+
{ url = "https://files.pythonhosted.org/packages/02/85/51e769e3ff00acf7376e58328fb62e980f1dddef9b9189cd4ea8f15264ba/simsimd-6.5.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f64148d59ec5e6caaadcfc77284fa4187f0686cee3095d9dd9c0366b59e077", size = 1067794, upload-time = "2025-09-06T16:15:01.743Z" },
|
|
8690
|
+
{ url = "https://files.pythonhosted.org/packages/60/49/024035a870b01e27b9c0d8fff489f677d027b80b89d75b4262d15473170d/simsimd-6.5.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:68b1924f60143ef5cf40ae38d75330e5b3c4e9953c878c1a60e913004c38d7d8", size = 597776, upload-time = "2025-09-06T16:15:03.679Z" },
|
|
8691
|
+
{ url = "https://files.pythonhosted.org/packages/ee/54/4ff042ba49e3d8e554650df5591637c4a99acc768d916070e54bb7841444/simsimd-6.5.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:24126bb1819b5687f208c8e4d549029019387377e74eb1699ac1346b358997b6", size = 401740, upload-time = "2025-09-06T16:15:05.59Z" },
|
|
8692
|
+
{ url = "https://files.pythonhosted.org/packages/28/58/214f1efc8c8def81ba73bb346587f5a1c02a1dda293fc8b5814d50570885/simsimd-6.5.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e94a47db1e1e18c98ead6671827662bc9a181e672573693fc281b3b2169a2e4d", size = 460558, upload-time = "2025-09-06T16:15:07.632Z" },
|
|
8693
|
+
{ url = "https://files.pythonhosted.org/packages/0d/44/7920aa3d6d2874edc49de1bbd89f309a1d34a80f9519ff32d3d4a1fe497b/simsimd-6.5.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:17472f64eb0f7e0ee56c7865134b37f1dfb102bba6b9b92ac2c8ead8edf3dd0e", size = 371966, upload-time = "2025-09-06T16:15:09.493Z" },
|
|
8694
|
+
{ url = "https://files.pythonhosted.org/packages/c5/b1/747a24b7a1d2b3ae2a651e1688a447f2af8a42aafd27685b173ad4815f41/simsimd-6.5.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc3c217c9912942644db64074a7745d7470273f69acc962f36ef584e88010087", size = 1000807, upload-time = "2025-09-06T16:15:10.955Z" },
|
|
8695
|
+
{ url = "https://files.pythonhosted.org/packages/e9/2c/6e66858a6150351e74238357d3b01718f743b405f79a16b9184f07f91748/simsimd-6.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:2bb463ebf97d95bfb192ede0c6e16e3db2d2a5876a74a8d593b62cecb3195765", size = 94572, upload-time = "2025-09-06T16:15:12.398Z" },
|
|
8696
|
+
{ url = "https://files.pythonhosted.org/packages/0f/b9/e54d439e151c3511cb0941838cafefaca5b505e79acdd6260229c866a6cf/simsimd-6.5.3-cp310-cp310-win_arm64.whl", hash = "sha256:aa180116a50310dc5424df07b76dec8f745bd70024b0406816710b9f9a46ae46", size = 59378, upload-time = "2025-09-06T16:15:13.793Z" },
|
|
8697
|
+
{ url = "https://files.pythonhosted.org/packages/b9/dc/17325531c8a54512b1b10fafbe76768608e5adc50264b9a729d53dd38c86/simsimd-6.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:33b64b748feb6a3f64bff8e885daf5dcc9b42678f024827e43b448aa914eefe7", size = 179121, upload-time = "2025-09-06T16:15:15.261Z" },
|
|
8698
|
+
{ url = "https://files.pythonhosted.org/packages/cb/31/c50e0882d5748c082dc0790bc78ab84e051a68182bdc0ab624d529438ba9/simsimd-6.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c954adf533036dc2131fa131557317bc874f54891e7b681d0af6dba18dffa82e", size = 134156, upload-time = "2025-09-06T16:15:17.203Z" },
|
|
8699
|
+
{ url = "https://files.pythonhosted.org/packages/73/09/132efc6d1eb778b19a53ae896c85b109ad5f8697f6e78916a29437b3ec0c/simsimd-6.5.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:05418b8d1b75f34208ff117dbcf3c62cefa3abab1a3958bcce60f43881138777", size = 563547, upload-time = "2025-09-06T16:15:18.513Z" },
|
|
8700
|
+
{ url = "https://files.pythonhosted.org/packages/cb/d9/ea094c95d90bf6420f637cf25abd846011772d931382569bf9ae92bcd04c/simsimd-6.5.3-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:ea50a7c00b1b32100372504970118a343f57421f7ed9c0db4a362fb74d28ab7e", size = 355879, upload-time = "2025-09-06T16:15:20.026Z" },
|
|
8701
|
+
{ url = "https://files.pythonhosted.org/packages/c3/50/85982084ff5161ffa3ff8c5bcb7bb55452c5a95db9ec671be14bfde61944/simsimd-6.5.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1b3e1bb1b91d8771ad905e90b4f06a6a7468fcd1fa8626e297816b349d6b6182", size = 411791, upload-time = "2025-09-06T16:15:21.822Z" },
|
|
8702
|
+
{ url = "https://files.pythonhosted.org/packages/68/41/b83c0fe08f6136cfc1181ee0b345748402f787dec99396aa5f1e3bc9ee11/simsimd-6.5.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4f1f20ee42d2aa57bb6cfb03c3d17c5c68cde987a71e3d421240aff159c004e8", size = 368280, upload-time = "2025-09-06T16:15:23.571Z" },
|
|
8703
|
+
{ url = "https://files.pythonhosted.org/packages/43/72/471da3e5740f22ef7bcee74b3a1ec15ad4f4155c276a64cfd8e15d867118/simsimd-6.5.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:473fe6797cfdfc2f900abe51d8faa575743e6a051a5d3c8bf07eb64d8da20051", size = 1068715, upload-time = "2025-09-06T16:15:25.276Z" },
|
|
8704
|
+
{ url = "https://files.pythonhosted.org/packages/d0/28/b0ba91295a3c1afd4e4158fcd654aa92946fb1e984b2be7f01fd00d50cc0/simsimd-6.5.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:de7ebf4918e94e1122e261778fac9a7397cceffc8fd8e3381301306a297f9678", size = 598538, upload-time = "2025-09-06T16:15:27.466Z" },
|
|
8705
|
+
{ url = "https://files.pythonhosted.org/packages/02/99/1d3c3ecae923febe58e767f5d3da7a367d0132eda82b2955577d6c814ee1/simsimd-6.5.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5da3b88033315d654ac71feb68296fc0597d968ead995d8a53c24e31552a5344", size = 402560, upload-time = "2025-09-06T16:15:29.397Z" },
|
|
8706
|
+
{ url = "https://files.pythonhosted.org/packages/38/08/4737bd305b4ba42f34e956a84a7b022dfd5d014bbbd9beebc5c404be8560/simsimd-6.5.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a4f4d711eb19278852f64f74b55fbf7a265b9993761f7d80e5ebadbd548bdbaa", size = 461351, upload-time = "2025-09-06T16:15:31.256Z" },
|
|
8707
|
+
{ url = "https://files.pythonhosted.org/packages/4e/d8/50e0661ef867800cac673016b218ee82535ffd6a2f568550cab4f1c722e8/simsimd-6.5.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:22cfae73fb5c5220c4f3f1bfddde681cce7259b7e90e73a77225025a62511094", size = 372809, upload-time = "2025-09-06T16:15:32.983Z" },
|
|
8708
|
+
{ url = "https://files.pythonhosted.org/packages/d0/30/bdcfed83a4aed6e249a5767265bbb09b6fdabc85d9ea0013c6e87fa5ff4c/simsimd-6.5.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:68754e56b9ca813b0fc73ea7ca04c303a36f3100811347009182646efaea4872", size = 1001540, upload-time = "2025-09-06T16:15:35.045Z" },
|
|
8709
|
+
{ url = "https://files.pythonhosted.org/packages/13/6e/ccbd2c413bdf56ed08692bff59651aaa56f5bd695287dd05262db4535051/simsimd-6.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:5e58bda40d247bf01b2cd50b841ab3376ec12ce022b8ed626b717f45b08eacd8", size = 94570, upload-time = "2025-09-06T16:15:36.577Z" },
|
|
8710
|
+
{ url = "https://files.pythonhosted.org/packages/52/75/b880453dd12d9ba7002b02bf7e1a7b3800947a0872fb3b83c813a26a13d4/simsimd-6.5.3-cp311-cp311-win_arm64.whl", hash = "sha256:0608c74239d5f9fa9eda9b07479a710d807776c18bb7e0a3a8204dafb513425f", size = 59376, upload-time = "2025-09-06T16:15:37.876Z" },
|
|
8711
|
+
{ url = "https://files.pythonhosted.org/packages/96/d8/ecb94ab75a0fbab1f9a36eac4cd7734836d7234788c2d3267d1f612e1cbd/simsimd-6.5.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:52495c13e8547c259a6da1ab5cbc95cb0ac4d2ca4ae33434b9514b64f39a122c", size = 177692, upload-time = "2025-09-06T16:15:39.199Z" },
|
|
8712
|
+
{ url = "https://files.pythonhosted.org/packages/90/79/5bab3fd20625b5cb83435f2a0c307af7077394cb963ce9ae92d4b486f8a3/simsimd-6.5.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:11358046752d72059e425946ac00001704a47869cc0d05b9f750a64720a2a6a9", size = 134107, upload-time = "2025-09-06T16:15:40.739Z" },
|
|
8713
|
+
{ url = "https://files.pythonhosted.org/packages/d5/ac/99db6d29819250ca86bd403a5869901e10b8abfa85843a5c33b28dbfe194/simsimd-6.5.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:be0f4921c370f715995789eb780315b0456d0b9937209caab0343b98bda5b668", size = 563233, upload-time = "2025-09-06T16:15:42.589Z" },
|
|
8714
|
+
{ url = "https://files.pythonhosted.org/packages/5c/79/b3c00bdd2422de46a20add6e77dc34f66de5e157c28487a5e654fbf25965/simsimd-6.5.3-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:26c9920fe1bd3a1d15a24167e2d8777bed32b21b48868d0c785c1a821575bc56", size = 355529, upload-time = "2025-09-06T16:15:44.191Z" },
|
|
8715
|
+
{ url = "https://files.pythonhosted.org/packages/6a/85/c65cbeb2fd33ffca41e76c79e73585da20e5d5ce4b0216681e61b643e657/simsimd-6.5.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bd0267b61c3128282b52388ce1390d95c8beab219da1b95d7aaadab9a18bf42b", size = 411360, upload-time = "2025-09-06T16:15:46.246Z" },
|
|
8716
|
+
{ url = "https://files.pythonhosted.org/packages/89/25/ba0dbdc1614bb35ac5756eb50fc86e322c1701b723e86691dbec45fec765/simsimd-6.5.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:cab8670c7ed2754a6a5f3d2d568a43141c6494092fcc1693efecd20cefb51f61", size = 367963, upload-time = "2025-09-06T16:15:47.849Z" },
|
|
8717
|
+
{ url = "https://files.pythonhosted.org/packages/7c/f2/34bd80d5f9a1297f2cccab56d0b46fa017f6824ad162e2ea0646529dc539/simsimd-6.5.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:051c6493f07c4ec5938648accd351b16221a5d07633649b6f392e387811900a1", size = 1068417, upload-time = "2025-09-06T16:15:49.51Z" },
|
|
8718
|
+
{ url = "https://files.pythonhosted.org/packages/e6/22/dea38422695e9637ae82d05e28e59b319664ae3f118a9bb1d1a9a7df53fa/simsimd-6.5.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8b1c26dd73960c9789e8e0f90750a2ede4e64120ad96b5f9ec46ef9e1f2039ac", size = 598297, upload-time = "2025-09-06T16:15:51.251Z" },
|
|
8719
|
+
{ url = "https://files.pythonhosted.org/packages/3f/df/dc02eeac0eda0eb199039a4569bfcce3a98a78aab6af76dd1915b08433b3/simsimd-6.5.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c827f13caf47cc255dea3455e4f68da9930c396e77ac6f116ab82ecab5d9b1e4", size = 402229, upload-time = "2025-09-06T16:15:53.097Z" },
|
|
8720
|
+
{ url = "https://files.pythonhosted.org/packages/a7/2a/e2c6c410bd29320c2666c03ffbba3314a07b2ffb338beabf9f98186c41d6/simsimd-6.5.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:1cdcc253fdb9179b9273e4771c333b5d9adf99f911de0d8197a6ee5962bd9f86", size = 460979, upload-time = "2025-09-06T16:15:55.011Z" },
|
|
8721
|
+
{ url = "https://files.pythonhosted.org/packages/d7/18/c91afb131ee2bd58ef4f05646c7c0c8d0b3a39a2f45386cd84c019030e3c/simsimd-6.5.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9d0bc9132bf2bb887246c784bf6a6c0b37a96af0d4aec7cc728e9b1274868bdb", size = 372616, upload-time = "2025-09-06T16:15:56.608Z" },
|
|
8722
|
+
{ url = "https://files.pythonhosted.org/packages/c4/67/151b8855a0060cba592ef045f3655c144b19f98d896e1ad204c8e1dc6aeb/simsimd-6.5.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:94a989ec638e4ebe33c6aacd31fec8586480017909e7c5016c91005d52512cad", size = 1001276, upload-time = "2025-09-06T16:15:58.158Z" },
|
|
8723
|
+
{ url = "https://files.pythonhosted.org/packages/5c/db/e458ae93987726f5b255148b259274c39e6f15b9d1158a0f0fa467539aa3/simsimd-6.5.3-cp312-cp312-win_amd64.whl", hash = "sha256:98af777ea1b227d42efdcb42fa5a667aa30c324665ec35425fcaa31152e4ccad", size = 94877, upload-time = "2025-09-06T16:15:59.848Z" },
|
|
8724
|
+
{ url = "https://files.pythonhosted.org/packages/05/fa/a5c8533daf52021beece3666fe09d2d2f41bc807f4863ad582e7ee141649/simsimd-6.5.3-cp312-cp312-win_arm64.whl", hash = "sha256:6e6a0bd069e02bb1f2f88f53a0abfbcf8040d2764668569e519a3360b9303858", size = 59508, upload-time = "2025-09-06T16:16:01.195Z" },
|
|
8725
|
+
{ url = "https://files.pythonhosted.org/packages/ec/eb/02c2fffe99fb6e6575cbb72f361ca6aa3916fcd8363672028ff4b2baa1df/simsimd-6.5.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:aebeb084101ac880ad2962e1bef3c034a5eeec63ec256bdc2ec6dced9cc1659b", size = 177696, upload-time = "2025-09-06T16:16:02.641Z" },
|
|
8726
|
+
{ url = "https://files.pythonhosted.org/packages/53/74/d6644f726ff52d4493dcc5739743ed18a6e65cad609431862e50cbd73ea3/simsimd-6.5.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:697b2cc147cecc8e9107a51877aec6078412c970cc780699d387f6450cb80392", size = 134114, upload-time = "2025-09-06T16:16:05.12Z" },
|
|
8727
|
+
{ url = "https://files.pythonhosted.org/packages/ba/28/c5302e09bc2e44f6800e39e482d5bd0fadecbef384661d69c05117c062ed/simsimd-6.5.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56f3547e569d42c9335e41eb03508558e4398efed34783c5ad9810d6dc1b4879", size = 563280, upload-time = "2025-09-06T16:16:06.595Z" },
|
|
8728
|
+
{ url = "https://files.pythonhosted.org/packages/2b/b9/530ec25a399872351f1a1de08ed2bef3d35b5ef65c0150d3548ecf09eee1/simsimd-6.5.3-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:4561a39c7957cd9f4c1ddf8c9e663de380e4d168527c8b929330e4eca5a69803", size = 355597, upload-time = "2025-09-06T16:16:08.264Z" },
|
|
8729
|
+
{ url = "https://files.pythonhosted.org/packages/8b/4d/a4bcd734421260481c942ec2fff40896ae23c833a9b7207d2b5c11495a41/simsimd-6.5.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5c8cb2a868937775fe9bd4fabc05d05c59027badf39f4a6b5a20f60503146d1c", size = 411435, upload-time = "2025-09-06T16:16:09.784Z" },
|
|
8730
|
+
{ url = "https://files.pythonhosted.org/packages/40/58/6aaede637fbfb00ab60860ba83b3cf36cdb09a27d5c82e681cce6c6ab6fc/simsimd-6.5.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f297be532613627271e1872d1e490e1d02a2df4e54603598e85e4cbc5cd4af38", size = 368062, upload-time = "2025-09-06T16:16:12.618Z" },
|
|
8731
|
+
{ url = "https://files.pythonhosted.org/packages/93/0c/0fe8f9a82f1dbe62f9985057bed1d8263e5dec29ba0c39227ffa5346f3a1/simsimd-6.5.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6b4edfbad104b202675733bc711721da7c9063c256c635c2b2441acd79db5238", size = 1068474, upload-time = "2025-09-06T16:16:14.159Z" },
|
|
8732
|
+
{ url = "https://files.pythonhosted.org/packages/71/86/df67fc2cdf1df89cdfedaf469ba12f1b29186dc671e4ccf8f65b523b1e92/simsimd-6.5.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:85896caa9b8dce370f5f1dee0f0469514351638ceb75796290413562c28ffe32", size = 598361, upload-time = "2025-09-06T16:16:15.749Z" },
|
|
8733
|
+
{ url = "https://files.pythonhosted.org/packages/9a/27/8c5daeafee9725f16e13a218ceff41b2ed7accede4053b339c630e970c34/simsimd-6.5.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:46333c4d2f13f0d45f0407057b026068fdc66f383acf9936f8e02842d618b679", size = 402303, upload-time = "2025-09-06T16:16:17.574Z" },
|
|
8734
|
+
{ url = "https://files.pythonhosted.org/packages/56/45/b95b8e4b7f272164e015a3f27361414c313fb0d7e24caa7a8e5802c1ff72/simsimd-6.5.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bf43cc7bf0b0284fd02103300319dc0f29bf46eaa93dfb2478351e3087551920", size = 461052, upload-time = "2025-09-06T16:16:19.094Z" },
|
|
8735
|
+
{ url = "https://files.pythonhosted.org/packages/0e/b1/ebbc87d697708a4413be98b3d061781c838a2a459f90f2a8d5a29d544f20/simsimd-6.5.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bc5c20c8b46e7f5fa3922c8b0bfe7032c38cb3c4a953a09ed6934de791bf42ba", size = 372663, upload-time = "2025-09-06T16:16:20.687Z" },
|
|
8736
|
+
{ url = "https://files.pythonhosted.org/packages/6e/7b/d7dcd93a6e298b1bd517ab2608b6ad5b1a0f28c5f575c430d37442b20887/simsimd-6.5.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b341f0ff17b9c34666d16047a9a031ff79ed558395af6923181dcc435c9b12eb", size = 1001318, upload-time = "2025-09-06T16:16:22.466Z" },
|
|
8737
|
+
{ url = "https://files.pythonhosted.org/packages/5b/fb/0035e7f6679a4a15b52522d62ae95170228a6508c39697ff3125d24a4811/simsimd-6.5.3-cp313-cp313-win_amd64.whl", hash = "sha256:b62691ef929b64118f7d22af793a9efed267e37633aaede4363a71b6378dc7e8", size = 94872, upload-time = "2025-09-06T16:16:24.525Z" },
|
|
8738
|
+
{ url = "https://files.pythonhosted.org/packages/22/8c/fc15378a8e599cb94711152588ca43c50ff11bcb5af0e3d40bf423a4b25a/simsimd-6.5.3-cp313-cp313-win_arm64.whl", hash = "sha256:406e4dd564e6b5e5dccab00d40950778a8684c65be3ef364b5f5e15a92df6770", size = 59512, upload-time = "2025-09-06T16:16:26.373Z" },
|
|
8739
|
+
{ url = "https://files.pythonhosted.org/packages/f8/f9/5fb5a051e904f86c567243bd46401ba1db5edf8a5025091801c8278483ba/simsimd-6.5.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7142baddb9e8579b1e9f741b33ea79fa1914dc364017e10d8a563ff55759b19f", size = 177854, upload-time = "2025-09-06T16:16:27.962Z" },
|
|
8740
|
+
{ url = "https://files.pythonhosted.org/packages/80/98/59158bbeb0c398d849b28a5fb99db20a829a93794edd1f2f9fc3438a95c6/simsimd-6.5.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a841727f9de8976bc5d4d4743b7c2d1e2a3aac255ceb6445a936696f1ad6001", size = 134395, upload-time = "2025-09-06T16:16:29.782Z" },
|
|
8741
|
+
{ url = "https://files.pythonhosted.org/packages/0a/0f/2396d017c266865fe338f7e2a7590391668b49bbfd0cbd0315580c6bb9b6/simsimd-6.5.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:90f15af7dab040ea9c970eeadc8da6c3a62149f1fd213946ec2d41fc341e505d", size = 565047, upload-time = "2025-09-06T16:16:31.358Z" },
|
|
8742
|
+
{ url = "https://files.pythonhosted.org/packages/e1/3a/9053327fea064fc14bcf55d74b02e042b1bde6c9c353ae11f637dfd22711/simsimd-6.5.3-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:6fa112ffde73c299afee40e27299f68b99008adbebfefc05e70f2d229d8696bf", size = 356593, upload-time = "2025-09-06T16:16:33.148Z" },
|
|
8743
|
+
{ url = "https://files.pythonhosted.org/packages/4c/43/c459d9a520382b445bae61c52bc380672e8f75300c12dfe4b5765d0167b2/simsimd-6.5.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cc84a7398a6c0f2b12d0d7196a7767e9eddbcf03d0bad8aa8acde159587c522b", size = 413090, upload-time = "2025-09-06T16:16:34.856Z" },
|
|
8744
|
+
{ url = "https://files.pythonhosted.org/packages/b4/62/5d4f0872abc88f53a9c96aa9f2d58cd3a4461b7c1e56396fedbce40bc6ce/simsimd-6.5.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6814a3a0297c421b8fce529b53ef7fb1a07caf09d351bf83f9c540cb14e27cac", size = 369584, upload-time = "2025-09-06T16:16:36.642Z" },
|
|
8745
|
+
{ url = "https://files.pythonhosted.org/packages/4f/0d/af7842312d7ba71b78e530d52a295ca779e7ec270da588aabbbb019c13f4/simsimd-6.5.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:32a8bd20f9a830bc71ed0b8614b712b814df8f46f303895e71c2b2f788621cdb", size = 1069971, upload-time = "2025-09-06T16:16:38.291Z" },
|
|
8746
|
+
{ url = "https://files.pythonhosted.org/packages/b6/97/3493c484f9e651c6b75eb48d36ad28bca315b67356992b45dc86f60a346d/simsimd-6.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:27a0524914090178628aef71eb8630c2ab36a2e95b2a5befa4af2c8f8fb9295c", size = 599873, upload-time = "2025-09-06T16:16:40.264Z" },
|
|
8747
|
+
{ url = "https://files.pythonhosted.org/packages/5c/82/d29fa22c4e0c3aef79cb98e3c9d16d8ee098c4cacdcdc7426e5016ba5e50/simsimd-6.5.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:85fdda2e9bdf31440207cc2696991a6a163dcff329b0814f446fcbf1c54320d4", size = 403649, upload-time = "2025-09-06T16:16:42.434Z" },
|
|
8748
|
+
{ url = "https://files.pythonhosted.org/packages/61/0d/9eed2ebf81ff5a9a2294060b7bf9dcf09122afb9e165a1cd1eb0d3713893/simsimd-6.5.3-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:123adaad09d96ab41763456cb9a61e2660bd28ddf3d46dabb9aacdff06e504f2", size = 462374, upload-time = "2025-09-06T16:16:44.12Z" },
|
|
8749
|
+
{ url = "https://files.pythonhosted.org/packages/a5/e1/545298da37b4b4beb5bae8c67d6ed71e349e96229fa0d54dd945b6bdeb46/simsimd-6.5.3-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:3096d9bb2685b82b4354a58f94153ac22082c58e1a0771c68ad07d44a3e4567f", size = 374087, upload-time = "2025-09-06T16:16:45.925Z" },
|
|
8750
|
+
{ url = "https://files.pythonhosted.org/packages/1a/36/c830b2855727b75e0cf80a09fd5dcaed3850737ebb37e53c3dcc1615d90e/simsimd-6.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ee19ed3b2098104c0d7f7f5d92c4b2caa1ab3cbe1a7c345bec75a21d33dc37a2", size = 1002568, upload-time = "2025-09-06T16:16:48.079Z" },
|
|
8751
|
+
{ url = "https://files.pythonhosted.org/packages/e8/6e/11ec68d0971cf8292469cd288e30300104a909a440befbc04338c3385730/simsimd-6.5.3-cp313-cp313t-win_amd64.whl", hash = "sha256:06aab6b9ff2deb6e0a01621ecb6de4d575e29991a7e90395d69eaeb53c029339", size = 95029, upload-time = "2025-09-06T16:16:50.095Z" },
|
|
8752
|
+
{ url = "https://files.pythonhosted.org/packages/2c/ec/7e24dc90bbc73459cf646d97c6265998ef8145631fdec2e31223f0de5d1e/simsimd-6.5.3-cp313-cp313t-win_arm64.whl", hash = "sha256:884a55249294e9293c7a67930d3d06e3c99e22de1696104691af524e55c02649", size = 59703, upload-time = "2025-09-06T16:16:51.668Z" },
|
|
8753
|
+
]
|
|
8754
|
+
|
|
8612
8755
|
[[package]]
|
|
8613
8756
|
name = "six"
|
|
8614
8757
|
version = "1.17.0"
|
|
@@ -9109,6 +9252,78 @@ wheels = [
|
|
|
9109
9252
|
{ url = "https://files.pythonhosted.org/packages/43/ff/f41cfaf1bb58223fe77ff87213a689f6c9c82f7363f9d7c879d294dbe985/streamlit-1.45.0-py3-none-any.whl", hash = "sha256:b7d03ec68a23de0f1922ec9a28fbe3fe37d9fb31ad31d6c429d262c3631c2943", size = 9856265, upload-time = "2025-04-29T17:34:30.403Z" },
|
|
9110
9253
|
]
|
|
9111
9254
|
|
|
9255
|
+
[[package]]
|
|
9256
|
+
name = "stringzilla"
|
|
9257
|
+
version = "4.2.1"
|
|
9258
|
+
source = { registry = "https://pypi.org/simple" }
|
|
9259
|
+
sdist = { url = "https://files.pythonhosted.org/packages/90/77/a00888f337fdd5a2738183d1bbb0bccdb232fdf453427331496ba5b11930/stringzilla-4.2.1.tar.gz", hash = "sha256:fd15835ab3b78b09dba678c66b36715bcf7f9e550994ea09abcc8eb7a5e1c9f7", size = 492899, upload-time = "2025-10-12T15:28:55.416Z" }
|
|
9260
|
+
wheels = [
|
|
9261
|
+
{ url = "https://files.pythonhosted.org/packages/bd/d0/6c5e1a78996e4e2bcffb02769c7b347389831f755a5b7e8c3378cb8176c6/stringzilla-4.2.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:4556cc9d06f391990f661ff4accbb1730586106d64eaaadeb61a0552f6064a83", size = 138575, upload-time = "2025-10-12T15:26:32.713Z" },
|
|
9262
|
+
{ url = "https://files.pythonhosted.org/packages/c7/29/7dd0b6c62244967c84833098e80e43b7f8ca11966488e21674301c9c9da8/stringzilla-4.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8b7dccec4a029769d0a5a3fe8193e36570848351e8bc5f04e9ee311daf1c1ec0", size = 133744, upload-time = "2025-10-12T15:26:35.582Z" },
|
|
9263
|
+
{ url = "https://files.pythonhosted.org/packages/c5/f1/b0f94aa1b59eb68bb5225c7adbcc3b2caf6612169d7502c399683908ae9b/stringzilla-4.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e7d5b0e4baed6f0295428b3974b2737ae5977eb5d665cd45573dadfc6f70ade", size = 423715, upload-time = "2025-10-12T15:26:36.829Z" },
|
|
9264
|
+
{ url = "https://files.pythonhosted.org/packages/f1/bf/9f3613a75f33cb5500123d3e1d58207122b045ebdbf110a941ef6ca30999/stringzilla-4.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8acf2f8c807bdb64c0feb3c02a13b78fd021131c2134ea21b57dddcabc0f1689", size = 385112, upload-time = "2025-10-12T15:26:38.307Z" },
|
|
9265
|
+
{ url = "https://files.pythonhosted.org/packages/41/71/4cb62cd3ef54048f8e64076e46b1500e37266cb6d7cbc3f144959dcd4ea1/stringzilla-4.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1b3471ab371b350f86720bfa41933596afbf2e474b98aeb8394b9e670135acfe", size = 351211, upload-time = "2025-10-12T15:26:39.486Z" },
|
|
9266
|
+
{ url = "https://files.pythonhosted.org/packages/ea/cd/9aaa25690de05618691b074f5c405692fa875cc0d1fc44d34212bde1ff0c/stringzilla-4.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5f8a6e68490e98f9398feda1f23028d809e0cd3aed1c03f86de673e57daf5044", size = 592076, upload-time = "2025-10-12T15:26:40.689Z" },
|
|
9267
|
+
{ url = "https://files.pythonhosted.org/packages/a6/e5/ae58ac97ab7a09f2d9be72f95570bf593213740b7a89ff96ebcac973c289/stringzilla-4.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90b17f7db9145315bda5e8eb3be5060259d107d56a3dfe895140e8746957e08b", size = 337692, upload-time = "2025-10-12T15:26:41.859Z" },
|
|
9268
|
+
{ url = "https://files.pythonhosted.org/packages/56/1e/1e481081a13ac2cb2454068d25e1960fbab72644c6d385897da41ce4e7e8/stringzilla-4.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:48e3b9c6b920e0659eed90d537cf6b85872dad50f081271cb0230035435cc6e7", size = 404805, upload-time = "2025-10-12T15:26:43.468Z" },
|
|
9269
|
+
{ url = "https://files.pythonhosted.org/packages/2c/66/69a79f9be56858e8d01e8e0ed79d8998058229c3e7fdc670b56fe17d0dc6/stringzilla-4.2.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a383df798dcb5fefb5288cbd584c5967bd34f38b54bcec0c8e7b12d2f9afe618", size = 342658, upload-time = "2025-10-12T15:26:44.555Z" },
|
|
9270
|
+
{ url = "https://files.pythonhosted.org/packages/4f/4c/c53c1ee940d1016ca35f9047b11f28a3bf0a22ce3ac25fc8b5853ffc3626/stringzilla-4.2.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5ed8ea25af30869adfa176685e7b71270b4ac63a0f1c69d7f21125d0dc92b11b", size = 324637, upload-time = "2025-10-12T15:26:46.318Z" },
|
|
9271
|
+
{ url = "https://files.pythonhosted.org/packages/61/fd/cfdd17ce8f8865233294c5e090e0ba2b6697a95d1e97081d89101f526e75/stringzilla-4.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c1cbb4f77374077386310bc5c5d4b59ee9af3883e788923d955d58e135d12dc4", size = 355308, upload-time = "2025-10-12T15:26:47.769Z" },
|
|
9272
|
+
{ url = "https://files.pythonhosted.org/packages/e7/16/b023ef359ce395163c8155e46c5368fcbcfee1d57de00a12248061e0d3eb/stringzilla-4.2.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0715aaedc1debb289887b90fd6033dc20430f49881ee5efe9940a564d27b208d", size = 348504, upload-time = "2025-10-12T15:26:49.237Z" },
|
|
9273
|
+
{ url = "https://files.pythonhosted.org/packages/0f/14/e0130e414aee9e71fc699d6ad8eba69424aa747b3da751402d38b67eb309/stringzilla-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae392d0dd7c3bafbf3e58d804975dcdd2db3a2f8d6921d53ce9c3266c91ce629", size = 576502, upload-time = "2025-10-12T15:26:50.515Z" },
|
|
9274
|
+
{ url = "https://files.pythonhosted.org/packages/59/f1/4c8d727c01feb3a0664df4f0197228b64b8ae929426ad43507d1bd4a18bd/stringzilla-4.2.1-cp310-cp310-win32.whl", hash = "sha256:19e18b5079273e69ce24b9754d2e3dc77e5ad4ae16e6ac9cecdc09698186b21d", size = 90937, upload-time = "2025-10-12T15:26:52.175Z" },
|
|
9275
|
+
{ url = "https://files.pythonhosted.org/packages/b2/9e/ed35b5f63c0325950e51d0a1be1e25873ce3f2b847d0002350d5cc33bd6d/stringzilla-4.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:d01e3a14355bf8336e263aafa065705e29bac7da8a7521f78b2aef1b276b0b92", size = 116227, upload-time = "2025-10-12T15:26:53.181Z" },
|
|
9276
|
+
{ url = "https://files.pythonhosted.org/packages/ba/b1/bc129108568b31db4c4863b8472eb5849436481391d13099d1bc631d7c68/stringzilla-4.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:d18c0668087e8fdef30610b1dc36e28b8b17fc33671ab1c1f574667e6a34ce39", size = 99797, upload-time = "2025-10-12T15:26:54.263Z" },
|
|
9277
|
+
{ url = "https://files.pythonhosted.org/packages/cf/61/7fcd09993ef4ecf42cc76a75bde11e73b54d60f7a649d4e4e16eb14c3b40/stringzilla-4.2.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:79618cc9bbb31de9645e8a1d9ed9c86ddddb5c5346581b993be6d28f5c3153a1", size = 138572, upload-time = "2025-10-12T15:26:55.624Z" },
|
|
9278
|
+
{ url = "https://files.pythonhosted.org/packages/c9/8e/fc94348d60ed6f54aca7aa4f3896ada9d814a30d268ce07051bbccd5180e/stringzilla-4.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b92d720d1a03eaa40a9949c7e8c3269237b68dbb272c7205d5347a5c3ac030eb", size = 133729, upload-time = "2025-10-12T15:26:56.814Z" },
|
|
9279
|
+
{ url = "https://files.pythonhosted.org/packages/d3/e9/895f024f806c90ef743c8d8ceaaadcac124c955d0c0e6b0d21a6f8a40ff2/stringzilla-4.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:afb9a0edb8173663f500d76b506582cb28a70c0ab986789afeefff03aef11f08", size = 427640, upload-time = "2025-10-12T15:26:58.222Z" },
|
|
9280
|
+
{ url = "https://files.pythonhosted.org/packages/e6/c9/5c809385e50390a08604e9d4ed25249c4565bc8c3310b67ec218e187fb5f/stringzilla-4.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:65057841900ae05790fb9b700a8e04767c2c47bf3a6ece60cea3af9a52897cdb", size = 390709, upload-time = "2025-10-12T15:26:59.464Z" },
|
|
9281
|
+
{ url = "https://files.pythonhosted.org/packages/c4/98/a3137c5a007ce77552f934120373312cee4242a56e46b97b0d3ce924f2cc/stringzilla-4.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5f9e86781e336f149e9163d1e02bcd0245c00fcdcfddb472c459a6c6f3f83f50", size = 356789, upload-time = "2025-10-12T15:27:00.598Z" },
|
|
9282
|
+
{ url = "https://files.pythonhosted.org/packages/81/3e/b56df2fdcb1064a140eb900c6395baf043dd84f0bb8fb5f1267bfa72d15d/stringzilla-4.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0a8c946103b7aefe7c2a01d5f68da86f2b1674936663090e22a8983fbc469e6c", size = 597064, upload-time = "2025-10-12T15:27:02.265Z" },
|
|
9283
|
+
{ url = "https://files.pythonhosted.org/packages/c0/a8/7d786bbfbeefba348469292a66f08ffbf959043c82c8b533c2cf1ad415cd/stringzilla-4.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0eef2d12d6bd556ed25ae794a8c622aef08cd9597cb1c8c91ac45eab5f0228c6", size = 343028, upload-time = "2025-10-12T15:27:03.857Z" },
|
|
9284
|
+
{ url = "https://files.pythonhosted.org/packages/9c/d7/d311ac9aef46422e6e4c815c9f64d82e805b811bd87d56e442ae2bd8c44e/stringzilla-4.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:52b3c9b1c76d9955481ccbd55c84bc70006ba89fb3cb71dbf2ce515ecd10d603", size = 409661, upload-time = "2025-10-12T15:27:05.051Z" },
|
|
9285
|
+
{ url = "https://files.pythonhosted.org/packages/c6/31/66865c8bc9ba39008b46ae8d2dc7c5e9cd11c32201abd5cc20b386334706/stringzilla-4.2.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:6fb94db70eaf94eaab479392c845de4d1f13d8980daaa1b6e4414dfb260dd1ee", size = 347391, upload-time = "2025-10-12T15:27:06.144Z" },
|
|
9286
|
+
{ url = "https://files.pythonhosted.org/packages/4c/3e/b56f9eae70dd6d59375f23c49ee637dda743a32361f43960907e5cd6e559/stringzilla-4.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3c8c22e026a7d2eed2dfe67bbe82445dfda050a770768b453fe6b0f6642f699c", size = 329675, upload-time = "2025-10-12T15:27:07.95Z" },
|
|
9287
|
+
{ url = "https://files.pythonhosted.org/packages/bd/7e/3fdcd544c0bbf5710553392d58c67a8ac1a401b92be905352d4b4dfe9b06/stringzilla-4.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:86e6c569177d7ea8f318a7fc6a3bd2f2138a47e9d213f30a4aa933632e13a164", size = 360117, upload-time = "2025-10-12T15:27:09.105Z" },
|
|
9288
|
+
{ url = "https://files.pythonhosted.org/packages/1e/dc/ac5667f881af824cc535bdfa69f0803085b04e6616ec66ab04607b7a7f35/stringzilla-4.2.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:309fde6a0c89e449e48655a9cb66903e187a6e052e48c239651f3147dfdb3d97", size = 353557, upload-time = "2025-10-12T15:27:11.311Z" },
|
|
9289
|
+
{ url = "https://files.pythonhosted.org/packages/46/1e/720a761d4f148880d0c6f048769cb85e762fbd21c461b4441491a9f685fe/stringzilla-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3d797dfd96825118c8bb9c79c401a7fc110e6de53ff01a319bfc81afc90bd2c9", size = 581647, upload-time = "2025-10-12T15:27:12.613Z" },
|
|
9290
|
+
{ url = "https://files.pythonhosted.org/packages/2a/38/803343204e0aa03143d350857837aa9dd818efbc66a3c95b23f8484a1da2/stringzilla-4.2.1-cp311-cp311-win32.whl", hash = "sha256:8726856a8375e65398688751bff458bb38b973bd25f5ed4b4ec26c7e79c9a8e6", size = 90919, upload-time = "2025-10-12T15:27:14.208Z" },
|
|
9291
|
+
{ url = "https://files.pythonhosted.org/packages/38/c9/61068a1cf82ab284e35dceeb28714af3de655b334b9adc14a3fc02682792/stringzilla-4.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:7ddfd29851ce2023f44fff2efe130f2273b10126dea3dc1a9a66fb8013227a0d", size = 116128, upload-time = "2025-10-12T15:27:15.446Z" },
|
|
9292
|
+
{ url = "https://files.pythonhosted.org/packages/e9/b5/3e73d25001e1c7adebdb79a2c74d42dfd79efde6bdaddf51a5fba689891b/stringzilla-4.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:176c8a8337f8a374b747fa6a192aa94676fb31bbbdbef75df67f1484b7aec347", size = 99789, upload-time = "2025-10-12T15:27:16.677Z" },
|
|
9293
|
+
{ url = "https://files.pythonhosted.org/packages/a3/40/c6bd1318a60159028840b98404ce54520ae2819ccae4a20a43d2f9fea99d/stringzilla-4.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2eba7ee0b885e3532d302cfcb96fb4772d430fe811a4367bade4850577300a0", size = 139197, upload-time = "2025-10-12T15:27:17.903Z" },
|
|
9294
|
+
{ url = "https://files.pythonhosted.org/packages/30/46/de503471a9be0128b5fc4392c697eccbf4708b54cece61477e10974fa0f5/stringzilla-4.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f49606a0de216311dc7d73194738a8e96f2f32a9e1c6649a5f2b16392f6580f", size = 134098, upload-time = "2025-10-12T15:27:19.15Z" },
|
|
9295
|
+
{ url = "https://files.pythonhosted.org/packages/4e/0c/9e9f092057b9415df51f7a50d4f008802bac65b1f500417ce0005959bdc8/stringzilla-4.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f27c359d66b4a95bcaeca64ff19c2c5c5a1579e66df0194b9e7b654f571b192b", size = 427326, upload-time = "2025-10-12T15:27:20.359Z" },
|
|
9296
|
+
{ url = "https://files.pythonhosted.org/packages/f4/38/bab8ef9d39ecf47018356fe1793dbba7ff3834d98b9d0b52cf77ec1894f1/stringzilla-4.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3e9e7370b7fb307dd74165d9b50e9d9e44c057dcb0dabdcf4c4e5c1d5f3436b6", size = 390755, upload-time = "2025-10-12T15:27:21.876Z" },
|
|
9297
|
+
{ url = "https://files.pythonhosted.org/packages/04/12/1602ccba8f1cfda5527ea6b4dbb784d26e5979da67dc41d9081db8bc5182/stringzilla-4.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b1f1d4b9c2b56a8ce72013ed681e79c05f0da42d7281feabc7458b1e4846fb9c", size = 357016, upload-time = "2025-10-12T15:27:23.103Z" },
|
|
9298
|
+
{ url = "https://files.pythonhosted.org/packages/ff/47/ed765f9b2a7c2be83f64c545ed8c70b9fdb17ad96e2ff17f9425bd9eab6d/stringzilla-4.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e08111da791d0fbf088875fa1ed51c34f98e11226351deacb9dd57acec04ca2", size = 599035, upload-time = "2025-10-12T15:27:24.774Z" },
|
|
9299
|
+
{ url = "https://files.pythonhosted.org/packages/d0/a2/ecd6c82409f28823a42dbb07c994b7cca17029f54e57ffe3c316ef2738b6/stringzilla-4.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b3c84a1edb28f3b0902adc147619f38f8975cdc5ac7aaa6dd744c121b73c57a", size = 344977, upload-time = "2025-10-12T15:27:26.609Z" },
|
|
9300
|
+
{ url = "https://files.pythonhosted.org/packages/ea/77/e57a997a0bb4bf14136bbce692a258353be161a624fbd902f94cb66abf7e/stringzilla-4.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bf223a6822a0c31202d9cfd039d33910fdef4ce3d4951491a8fb2b68c492917c", size = 409084, upload-time = "2025-10-12T15:27:28.064Z" },
|
|
9301
|
+
{ url = "https://files.pythonhosted.org/packages/08/77/eeda045c509c170c84a5635c02c5f845dd35e69c9fb7460a54e9ffa33812/stringzilla-4.2.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:53207e43bb948360fd5523e5eaedaecfdcee5e74f62ac11e224be1b63c591d69", size = 350166, upload-time = "2025-10-12T15:27:29.486Z" },
|
|
9302
|
+
{ url = "https://files.pythonhosted.org/packages/75/b2/dcc371d70c5ad9fcb9f9b797c23a66f2f534953c57815427da0be94d84a1/stringzilla-4.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4fa89e6691d3d26b11dc23eeee6435f5a2658957d5ec4c45c522d991268568ff", size = 331095, upload-time = "2025-10-12T15:27:30.936Z" },
|
|
9303
|
+
{ url = "https://files.pythonhosted.org/packages/76/22/861aba47b9bd785c3907d46ca18c5bb7d7a9d764f800506b83b35c6b692f/stringzilla-4.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:30544a70ab3440ef4fc2e71ebd9df6d700341f32ab35a64fd170eb1f6297aac9", size = 360524, upload-time = "2025-10-12T15:27:32.764Z" },
|
|
9304
|
+
{ url = "https://files.pythonhosted.org/packages/a2/44/a8bb0bbf4387feb253e4f5b2c898f2b091016fc09fab177ee52bc35cf855/stringzilla-4.2.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:51141defea62b19cd65efc576735b43a418fbc145f035deb39f97b2a8b6c9bd6", size = 354791, upload-time = "2025-10-12T15:27:34.459Z" },
|
|
9305
|
+
{ url = "https://files.pythonhosted.org/packages/a6/95/c53ce6f2826658c0dd7cb4a3aa1f6a0a183649012f8d0b0c87d657693006/stringzilla-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:609fa78328a670b504f5460927b650e6e41fc0068e2571f32db07ac1b91e33da", size = 583606, upload-time = "2025-10-12T15:27:36.261Z" },
|
|
9306
|
+
{ url = "https://files.pythonhosted.org/packages/2d/18/1c87d0b4b80810103cf6c279bdaca49e91d4ef064c8cbb1146d0fc53c733/stringzilla-4.2.1-cp312-cp312-win32.whl", hash = "sha256:235a19c4fd0f3c41afdd50612236ac44842c5a4f938b6a41d259418340d5c742", size = 91119, upload-time = "2025-10-12T15:27:37.565Z" },
|
|
9307
|
+
{ url = "https://files.pythonhosted.org/packages/19/b5/617c80fc8a15efe98723a5cc891aba226b4a653f94b3608789e4200dc535/stringzilla-4.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:1c1db339494f12b3385b313278bab531f5fa56ff8e35f3a73b6c55599e90c82a", size = 116258, upload-time = "2025-10-12T15:27:38.755Z" },
|
|
9308
|
+
{ url = "https://files.pythonhosted.org/packages/7e/fa/0573cd7394dcee45aaa8d7edcc8df24da7245cc58f575d6afcf2a82377ef/stringzilla-4.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:7a6e20dfd02e70b6272910f2e168fc029db23e2af6ca9b3c6b0f8f283346bbe6", size = 100001, upload-time = "2025-10-12T15:27:39.988Z" },
|
|
9309
|
+
{ url = "https://files.pythonhosted.org/packages/dc/70/5f5582bf90bee42f2248ea737410b30656b968be71339a643f19ca34e0e0/stringzilla-4.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8c2e30218c4300e0cb185c35c3fb6ff9c41244121a05439fbc40fbf8791ca605", size = 139196, upload-time = "2025-10-12T15:27:41.283Z" },
|
|
9310
|
+
{ url = "https://files.pythonhosted.org/packages/52/5c/60bdf54ea9ea51391d3aebceccac537ea3e1ed6a6a43b248f4df1e68d21a/stringzilla-4.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2ee2c59018a4a47b78d9fe8e4b54c7ee84eccfdd7fe05a0df6cec2f97c2c5f7b", size = 134103, upload-time = "2025-10-12T15:27:42.501Z" },
|
|
9311
|
+
{ url = "https://files.pythonhosted.org/packages/a3/ed/195f796dc73b977c98ccd298454554402beee3c1ede23d1aa1ed47c88bc4/stringzilla-4.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0d733c5e216050da3dee292aeba86018e80246940991993bc952d3260b78926b", size = 427338, upload-time = "2025-10-12T15:27:43.746Z" },
|
|
9312
|
+
{ url = "https://files.pythonhosted.org/packages/ce/eb/f006e0707241584fd53f029a600353c8cb075c5fff6b10761bcdd19097ba/stringzilla-4.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:829a6c4d1ac5ddb5617d6e5f2270231b6581821d42094d46cbe1152aad2aa8b0", size = 390783, upload-time = "2025-10-12T15:27:45.282Z" },
|
|
9313
|
+
{ url = "https://files.pythonhosted.org/packages/f4/96/527e091e413f0d34ec4065605321f9c2bd9e6e793bd7ae43f473303c7786/stringzilla-4.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c7cfa8aec322b6f76b01753503625c982528fdb78b8faf8cdc65972aa654087c", size = 357007, upload-time = "2025-10-12T15:27:46.719Z" },
|
|
9314
|
+
{ url = "https://files.pythonhosted.org/packages/48/c0/b91a58ad69901e887e0c630994bf327a0d02fd7d9bdb231895f0191d41b9/stringzilla-4.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:676aa898592a62bbd93e86ada3d5cbbf40a02dba3cdfc5c27b8860830a5c92ef", size = 599036, upload-time = "2025-10-12T15:27:48.05Z" },
|
|
9315
|
+
{ url = "https://files.pythonhosted.org/packages/11/88/b6f51ed334847d6ee6739aab8347941c20692a1118ecebe296bebdda1f66/stringzilla-4.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7db57a0d71e265d085fd67fb4c0bfafd5743c918110b993e96ef9a5c8a1f435", size = 344982, upload-time = "2025-10-12T15:27:50.033Z" },
|
|
9316
|
+
{ url = "https://files.pythonhosted.org/packages/16/2a/8efd83b204734f82bea4a0566c1b3ce298b7c3638a395e85fed959eed04a/stringzilla-4.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:75cfb4aeafcd98541c4c0e64381fbd61ce3fd77743b971139080f424cc49fec9", size = 409138, upload-time = "2025-10-12T15:27:51.451Z" },
|
|
9317
|
+
{ url = "https://files.pythonhosted.org/packages/2c/61/50b482c4e776eed08507b894e1c8e4e0155bbbe5eee81a20175b2de2feaf/stringzilla-4.2.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:babed0b6a06841d133729b0543ff80ac7dd1e999a99f4f2d49e833bcc95b0228", size = 350228, upload-time = "2025-10-12T15:27:52.93Z" },
|
|
9318
|
+
{ url = "https://files.pythonhosted.org/packages/ca/fc/da25c9b67e875e646c36d03de7269ae20531c3f0bb435f9b4993736fa1a2/stringzilla-4.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:c32f0369c46773f54f71ab18b0a7c1066e771e2b40806d8366bcfa7eacec2525", size = 331129, upload-time = "2025-10-12T15:27:54.382Z" },
|
|
9319
|
+
{ url = "https://files.pythonhosted.org/packages/05/cd/ad86e013bea1f05308e4f95e9350cea53288fcd3d8f9c7866ca1916f654e/stringzilla-4.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7665312aad3a7c5eb31eadd04eaa0bde56f5c5d3f8e0e1f97fa6fb3a0fe9d1ea", size = 360535, upload-time = "2025-10-12T15:27:55.737Z" },
|
|
9320
|
+
{ url = "https://files.pythonhosted.org/packages/41/59/7c60a01ed4057a8e6dd16860da9c0e325d72db80875d91c8fd2123d572a0/stringzilla-4.2.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:5dafaef2993bf5f876c66c222528b314090d5df219cc185ceb824b25ea9cc2c9", size = 354838, upload-time = "2025-10-12T15:27:57.105Z" },
|
|
9321
|
+
{ url = "https://files.pythonhosted.org/packages/1b/b5/6f0254e50b07ed6565573a5d67e1ab4c16d04fdbbfc2201b04a15bb4cb06/stringzilla-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c641b67234dc8cd8b229c1e602e941d8d5e08c5c4d6e53e369becab9ef529e64", size = 583645, upload-time = "2025-10-12T15:27:58.567Z" },
|
|
9322
|
+
{ url = "https://files.pythonhosted.org/packages/ec/45/9ce0bbb2784c714893d7af7c350a6b9effc3232825133730ff857ce249c9/stringzilla-4.2.1-cp313-cp313-win32.whl", hash = "sha256:4955e62cedb700f08a9f47205f75356ac68c294fb0d0806d94ff8a84cf91a3cd", size = 91116, upload-time = "2025-10-12T15:27:59.954Z" },
|
|
9323
|
+
{ url = "https://files.pythonhosted.org/packages/9d/47/3f3cfd4e33526cac8215aba8a504516c6223aca55e62c7031f80a70b8792/stringzilla-4.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:9ab4941e06e8b580245ec5f2ddf793dd238de68c88edcd8c14ed70c4c078ffb4", size = 116262, upload-time = "2025-10-12T15:28:01.329Z" },
|
|
9324
|
+
{ url = "https://files.pythonhosted.org/packages/26/a6/6b5606cfe672854f429050852644e379ade3125c6949f1ea51eb0d2f6922/stringzilla-4.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:be2798ceac0872e98a7ca02a340434a9799630faf244d34f596f573b12c6e774", size = 100006, upload-time = "2025-10-12T15:28:02.671Z" },
|
|
9325
|
+
]
|
|
9326
|
+
|
|
9112
9327
|
[[package]]
|
|
9113
9328
|
name = "sympy"
|
|
9114
9329
|
version = "1.13.3"
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
from IPython.core.magic import Magics, magics_class, line_cell_magic
|
|
2
|
-
from IPython.core.magic_arguments import argument, magic_arguments, parse_argstring
|
|
3
|
-
import llm
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
@magics_class
|
|
7
|
-
class AIMagic(Magics):
|
|
8
|
-
|
|
9
|
-
def __init__(self, shell, default_model_name='gpt-4o-mini'):
|
|
10
|
-
# You must call the parent constructor
|
|
11
|
-
super().__init__(shell)
|
|
12
|
-
self.default_model = llm.get_model(default_model_name)
|
|
13
|
-
|
|
14
|
-
@magic_arguments()
|
|
15
|
-
@argument("-m", "--model", type=str, help="Model name to use")
|
|
16
|
-
@argument("-t", "--temperature", type=float, help="Sampling temperature")
|
|
17
|
-
@argument("prompt", nargs="*", help="Prompt text (for line magic)")
|
|
18
|
-
@line_cell_magic
|
|
19
|
-
def ai(self, line, cell=None):
|
|
20
|
-
# Parse arguments
|
|
21
|
-
args = parse_argstring(self.ai, line)
|
|
22
|
-
options = vars(args)
|
|
23
|
-
|
|
24
|
-
# Combine cell content and line prompt
|
|
25
|
-
prompt = " ".join(args.prompt) + ("" if cell is None else "\n\n" + cell)
|
|
26
|
-
|
|
27
|
-
if "model" in options:
|
|
28
|
-
model = llm.get_model(options["model"])
|
|
29
|
-
else:
|
|
30
|
-
model = self.default_model
|
|
31
|
-
|
|
32
|
-
# Prepare options to pass to llm
|
|
33
|
-
completion_args = {
|
|
34
|
-
k: v for k, v in options.items() if k not in {"prompt", "model"} and v is not None
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
# Call llm and return response
|
|
38
|
-
response = model.prompt(prompt, **completion_args)
|
|
39
|
-
print(response.text())
|
|
40
|
-
|