goose-py 0.11.24__tar.gz → 0.11.26__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.
- {goose_py-0.11.24 → goose_py-0.11.26}/PKG-INFO +2 -2
- {goose_py-0.11.24 → goose_py-0.11.26}/pyproject.toml +2 -2
- {goose_py-0.11.24 → goose_py-0.11.26}/uv.lock +164 -9
- {goose_py-0.11.24 → goose_py-0.11.26}/.envrc +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/.github/workflows/publish.yml +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/.gitignore +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/.python-version +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/.stubs/jsonpath_ng/__init__.pyi +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/Makefile +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/README.md +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/__init__.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/agent.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/conversation.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/flow.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/result.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/state.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/store.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/task.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/types/__init__.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/_internal/types/telemetry.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/errors.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/flow.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/py.typed +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/runs.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/goose/task.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/__init__.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_agent.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_ask.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_downstream_task.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_hashing.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_looping.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_refining.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_regenerate.py +0 -0
- {goose_py-0.11.24 → goose_py-0.11.26}/tests/test_state.py +0 -0
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: goose-py
|
3
|
-
Version: 0.11.
|
3
|
+
Version: 0.11.26
|
4
4
|
Summary: A tool for AI workflows based on human-computer collaboration and structured output.
|
5
5
|
Author-email: Nash Taylor <nash@chelle.ai>, Joshua Cook <joshua@chelle.ai>, Michael Sankur <michael@chelle.ai>
|
6
6
|
Requires-Python: >=3.12
|
7
|
-
Requires-Dist: aikernel==0.1.
|
7
|
+
Requires-Dist: aikernel==0.1.43
|
8
8
|
Requires-Dist: jsonpath-ng>=1.7.0
|
9
9
|
Requires-Dist: pydantic>=2.8.2
|
10
10
|
Description-Content-Type: text/markdown
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "goose-py"
|
3
|
-
version = "0.11.
|
3
|
+
version = "0.11.26"
|
4
4
|
description = "A tool for AI workflows based on human-computer collaboration and structured output."
|
5
5
|
readme = "README.md"
|
6
6
|
authors = [
|
@@ -11,7 +11,7 @@ authors = [
|
|
11
11
|
requires-python = ">=3.12"
|
12
12
|
dependencies = [
|
13
13
|
"jsonpath-ng>=1.7.0",
|
14
|
-
"aikernel==0.1.
|
14
|
+
"aikernel==0.1.43",
|
15
15
|
"pydantic>=2.8.2",
|
16
16
|
]
|
17
17
|
|
@@ -3,15 +3,17 @@ requires-python = ">=3.12"
|
|
3
3
|
|
4
4
|
[[package]]
|
5
5
|
name = "aikernel"
|
6
|
-
version = "0.1.
|
6
|
+
version = "0.1.43"
|
7
7
|
source = { registry = "https://pypi.org/simple" }
|
8
8
|
dependencies = [
|
9
|
+
{ name = "boto3" },
|
10
|
+
{ name = "google-genai" },
|
9
11
|
{ name = "litellm" },
|
10
12
|
{ name = "pydantic" },
|
11
13
|
]
|
12
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
14
|
+
sdist = { url = "https://files.pythonhosted.org/packages/16/c2/eeea36b81fdfd90198bdbbe5bfe238868b07e3f83bac90d8c9ac34c1f5f6/aikernel-0.1.43.tar.gz", hash = "sha256:1266c807ae11cece2b2afc359d22aeeab8ff56354a5ca8f2988b6468b1146cbe", size = 77917 }
|
13
15
|
wheels = [
|
14
|
-
{ url = "https://files.pythonhosted.org/packages/
|
16
|
+
{ url = "https://files.pythonhosted.org/packages/e8/6e/d8a51e24a7f5d46926faf8254218d15617f28fad720c8527cfe3c3e99a05/aikernel-0.1.43-py3-none-any.whl", hash = "sha256:57d23c0b0004c7c62b01f6f5d861e8dcebf7c5f3ac5f006b01d4c343ae7a3fba", size = 11562 },
|
15
17
|
]
|
16
18
|
|
17
19
|
[[package]]
|
@@ -132,6 +134,43 @@ wheels = [
|
|
132
134
|
{ url = "https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a", size = 63152 },
|
133
135
|
]
|
134
136
|
|
137
|
+
[[package]]
|
138
|
+
name = "boto3"
|
139
|
+
version = "1.37.23"
|
140
|
+
source = { registry = "https://pypi.org/simple" }
|
141
|
+
dependencies = [
|
142
|
+
{ name = "botocore" },
|
143
|
+
{ name = "jmespath" },
|
144
|
+
{ name = "s3transfer" },
|
145
|
+
]
|
146
|
+
sdist = { url = "https://files.pythonhosted.org/packages/65/81/fcaf72cf86c4b3f1a4efa3500e08c97d2a98966a35760acfaed79100c6a0/boto3-1.37.23.tar.gz", hash = "sha256:82f4599a34f5eb66e916b9ac8547394f6e5899c19580e74b60237db04cf66d1e", size = 111354 }
|
147
|
+
wheels = [
|
148
|
+
{ url = "https://files.pythonhosted.org/packages/25/eb/88fe910bde6ccc94cbf099bc5e50b7bf79c97a3292bb4e0e2fbd73824906/boto3-1.37.23-py3-none-any.whl", hash = "sha256:fc462b9fd738bd8a1c121d94d237c6b6a05a2c1cc709d16f5223acb752f7310b", size = 139561 },
|
149
|
+
]
|
150
|
+
|
151
|
+
[[package]]
|
152
|
+
name = "botocore"
|
153
|
+
version = "1.37.23"
|
154
|
+
source = { registry = "https://pypi.org/simple" }
|
155
|
+
dependencies = [
|
156
|
+
{ name = "jmespath" },
|
157
|
+
{ name = "python-dateutil" },
|
158
|
+
{ name = "urllib3" },
|
159
|
+
]
|
160
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0e/34/9becaddf187353e1449a3bfa08ee7b069398f51e3d600cffdb0a63789e34/botocore-1.37.23.tar.gz", hash = "sha256:3a249c950cef9ee9ed7b2278500ad83a4ad6456bc433a43abd1864d1b61b2acb", size = 13680710 }
|
161
|
+
wheels = [
|
162
|
+
{ url = "https://files.pythonhosted.org/packages/8e/1c/9d840859acaf6df9effa9ef3e25624c27fc65334c51396909b22e235e8d1/botocore-1.37.23-py3-none-any.whl", hash = "sha256:ffbe1f5958adb1c50d72d3ad1018cb265fe349248c08782d334601c0814f0e38", size = 13446175 },
|
163
|
+
]
|
164
|
+
|
165
|
+
[[package]]
|
166
|
+
name = "cachetools"
|
167
|
+
version = "5.5.2"
|
168
|
+
source = { registry = "https://pypi.org/simple" }
|
169
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6c/81/3747dad6b14fa2cf53fcf10548cf5aea6913e96fab41a3c198676f8948a5/cachetools-5.5.2.tar.gz", hash = "sha256:1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4", size = 28380 }
|
170
|
+
wheels = [
|
171
|
+
{ url = "https://files.pythonhosted.org/packages/72/76/20fa66124dbe6be5cafeb312ece67de6b61dd91a0247d1ea13db4ebb33c2/cachetools-5.5.2-py3-none-any.whl", hash = "sha256:d26a22bcc62eb95c3beabd9f1ee5e820d3d2704fe2967cbe350e20c8ffcd3f0a", size = 10080 },
|
172
|
+
]
|
173
|
+
|
135
174
|
[[package]]
|
136
175
|
name = "certifi"
|
137
176
|
version = "2025.1.31"
|
@@ -343,9 +382,41 @@ wheels = [
|
|
343
382
|
{ url = "https://files.pythonhosted.org/packages/e2/94/758680531a00d06e471ef649e4ec2ed6bf185356a7f9fbfbb7368a40bd49/fsspec-2025.2.0-py3-none-any.whl", hash = "sha256:9de2ad9ce1f85e1931858535bc882543171d197001a0a5eb2ddc04f1781ab95b", size = 184484 },
|
344
383
|
]
|
345
384
|
|
385
|
+
[[package]]
|
386
|
+
name = "google-auth"
|
387
|
+
version = "2.38.0"
|
388
|
+
source = { registry = "https://pypi.org/simple" }
|
389
|
+
dependencies = [
|
390
|
+
{ name = "cachetools" },
|
391
|
+
{ name = "pyasn1-modules" },
|
392
|
+
{ name = "rsa" },
|
393
|
+
]
|
394
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c6/eb/d504ba1daf190af6b204a9d4714d457462b486043744901a6eeea711f913/google_auth-2.38.0.tar.gz", hash = "sha256:8285113607d3b80a3f1543b75962447ba8a09fe85783432a784fdeef6ac094c4", size = 270866 }
|
395
|
+
wheels = [
|
396
|
+
{ url = "https://files.pythonhosted.org/packages/9d/47/603554949a37bca5b7f894d51896a9c534b9eab808e2520a748e081669d0/google_auth-2.38.0-py2.py3-none-any.whl", hash = "sha256:e7dae6694313f434a2727bf2906f27ad259bae090d7aa896590d86feec3d9d4a", size = 210770 },
|
397
|
+
]
|
398
|
+
|
399
|
+
[[package]]
|
400
|
+
name = "google-genai"
|
401
|
+
version = "1.8.0"
|
402
|
+
source = { registry = "https://pypi.org/simple" }
|
403
|
+
dependencies = [
|
404
|
+
{ name = "anyio" },
|
405
|
+
{ name = "google-auth" },
|
406
|
+
{ name = "httpx" },
|
407
|
+
{ name = "pydantic" },
|
408
|
+
{ name = "requests" },
|
409
|
+
{ name = "typing-extensions" },
|
410
|
+
{ name = "websockets" },
|
411
|
+
]
|
412
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c8/f5/1a94a9f9c188acd442a035fa287c7163db011e9549312a3cbda707f169f2/google_genai-1.8.0.tar.gz", hash = "sha256:bafd935275e18ab189adeddfe0e6e67a154a5868fa1e146182d8af36a69a58d9", size = 147073 }
|
413
|
+
wheels = [
|
414
|
+
{ url = "https://files.pythonhosted.org/packages/b1/87/9ce47ede79878962f2f162e1d56e40bfbc9cf7a364963d72930589c3c62e/google_genai-1.8.0-py3-none-any.whl", hash = "sha256:b44bd67aa158313ab679d499e4e1666ca7b6363beb24f0d2149983c09460811a", size = 145696 },
|
415
|
+
]
|
416
|
+
|
346
417
|
[[package]]
|
347
418
|
name = "goose-py"
|
348
|
-
version = "0.11.
|
419
|
+
version = "0.11.26"
|
349
420
|
source = { editable = "." }
|
350
421
|
dependencies = [
|
351
422
|
{ name = "aikernel" },
|
@@ -365,7 +436,7 @@ dev = [
|
|
365
436
|
|
366
437
|
[package.metadata]
|
367
438
|
requires-dist = [
|
368
|
-
{ name = "aikernel", specifier = "==0.1.
|
439
|
+
{ name = "aikernel", specifier = "==0.1.43" },
|
369
440
|
{ name = "jsonpath-ng", specifier = ">=1.7.0" },
|
370
441
|
{ name = "pydantic", specifier = ">=2.8.2" },
|
371
442
|
]
|
@@ -404,18 +475,17 @@ wheels = [
|
|
404
475
|
|
405
476
|
[[package]]
|
406
477
|
name = "httpx"
|
407
|
-
version = "0.
|
478
|
+
version = "0.28.1"
|
408
479
|
source = { registry = "https://pypi.org/simple" }
|
409
480
|
dependencies = [
|
410
481
|
{ name = "anyio" },
|
411
482
|
{ name = "certifi" },
|
412
483
|
{ name = "httpcore" },
|
413
484
|
{ name = "idna" },
|
414
|
-
{ name = "sniffio" },
|
415
485
|
]
|
416
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
486
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406 }
|
417
487
|
wheels = [
|
418
|
-
{ url = "https://files.pythonhosted.org/packages/
|
488
|
+
{ url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517 },
|
419
489
|
]
|
420
490
|
|
421
491
|
[[package]]
|
@@ -582,6 +652,15 @@ wheels = [
|
|
582
652
|
{ url = "https://files.pythonhosted.org/packages/91/61/c80ef80ed8a0a21158e289ef70dac01e351d929a1c30cb0f49be60772547/jiter-0.8.2-cp313-cp313t-win_amd64.whl", hash = "sha256:3ac9f578c46f22405ff7f8b1f5848fb753cc4b8377fbec8470a7dc3997ca7566", size = 202374 },
|
583
653
|
]
|
584
654
|
|
655
|
+
[[package]]
|
656
|
+
name = "jmespath"
|
657
|
+
version = "1.0.1"
|
658
|
+
source = { registry = "https://pypi.org/simple" }
|
659
|
+
sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843 }
|
660
|
+
wheels = [
|
661
|
+
{ url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256 },
|
662
|
+
]
|
663
|
+
|
585
664
|
[[package]]
|
586
665
|
name = "jsonpath-ng"
|
587
666
|
version = "1.7.0"
|
@@ -942,6 +1021,27 @@ wheels = [
|
|
942
1021
|
{ url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842 },
|
943
1022
|
]
|
944
1023
|
|
1024
|
+
[[package]]
|
1025
|
+
name = "pyasn1"
|
1026
|
+
version = "0.6.1"
|
1027
|
+
source = { registry = "https://pypi.org/simple" }
|
1028
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ba/e9/01f1a64245b89f039897cb0130016d79f77d52669aae6ee7b159a6c4c018/pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034", size = 145322 }
|
1029
|
+
wheels = [
|
1030
|
+
{ url = "https://files.pythonhosted.org/packages/c8/f1/d6a797abb14f6283c0ddff96bbdd46937f64122b8c925cab503dd37f8214/pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629", size = 83135 },
|
1031
|
+
]
|
1032
|
+
|
1033
|
+
[[package]]
|
1034
|
+
name = "pyasn1-modules"
|
1035
|
+
version = "0.4.2"
|
1036
|
+
source = { registry = "https://pypi.org/simple" }
|
1037
|
+
dependencies = [
|
1038
|
+
{ name = "pyasn1" },
|
1039
|
+
]
|
1040
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6", size = 307892 }
|
1041
|
+
wheels = [
|
1042
|
+
{ url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259 },
|
1043
|
+
]
|
1044
|
+
|
945
1045
|
[[package]]
|
946
1046
|
name = "pycparser"
|
947
1047
|
version = "2.22"
|
@@ -1280,6 +1380,18 @@ wheels = [
|
|
1280
1380
|
{ url = "https://files.pythonhosted.org/packages/f8/30/7ac943f69855c2db77407ae363484b915d861702dbba1aa82d68d57f42be/rpds_py-0.22.3-cp313-cp313t-win_amd64.whl", hash = "sha256:f5cf2a0c2bdadf3791b5c205d55a37a54025c6e18a71c71f82bb536cf9a454bf", size = 233794 },
|
1281
1381
|
]
|
1282
1382
|
|
1383
|
+
[[package]]
|
1384
|
+
name = "rsa"
|
1385
|
+
version = "4.9"
|
1386
|
+
source = { registry = "https://pypi.org/simple" }
|
1387
|
+
dependencies = [
|
1388
|
+
{ name = "pyasn1" },
|
1389
|
+
]
|
1390
|
+
sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711 }
|
1391
|
+
wheels = [
|
1392
|
+
{ url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315 },
|
1393
|
+
]
|
1394
|
+
|
1283
1395
|
[[package]]
|
1284
1396
|
name = "ruff"
|
1285
1397
|
version = "0.9.4"
|
@@ -1305,6 +1417,18 @@ wheels = [
|
|
1305
1417
|
{ url = "https://files.pythonhosted.org/packages/c6/e6/3d6ec3bc3d254e7f005c543a661a41c3e788976d0e52a1ada195bd664344/ruff-0.9.4-py3-none-win_arm64.whl", hash = "sha256:585792f1e81509e38ac5123492f8875fbc36f3ede8185af0a26df348e5154f41", size = 10078251 },
|
1306
1418
|
]
|
1307
1419
|
|
1420
|
+
[[package]]
|
1421
|
+
name = "s3transfer"
|
1422
|
+
version = "0.11.4"
|
1423
|
+
source = { registry = "https://pypi.org/simple" }
|
1424
|
+
dependencies = [
|
1425
|
+
{ name = "botocore" },
|
1426
|
+
]
|
1427
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0f/ec/aa1a215e5c126fe5decbee2e107468f51d9ce190b9763cb649f76bb45938/s3transfer-0.11.4.tar.gz", hash = "sha256:559f161658e1cf0a911f45940552c696735f5c74e64362e515f333ebed87d679", size = 148419 }
|
1428
|
+
wheels = [
|
1429
|
+
{ url = "https://files.pythonhosted.org/packages/86/62/8d3fc3ec6640161a5649b2cddbbf2b9fa39c92541225b33f117c37c5a2eb/s3transfer-0.11.4-py3-none-any.whl", hash = "sha256:ac265fa68318763a03bf2dc4f39d5cbd6a9e178d81cc9483ad27da33637e320d", size = 84412 },
|
1430
|
+
]
|
1431
|
+
|
1308
1432
|
[[package]]
|
1309
1433
|
name = "six"
|
1310
1434
|
version = "1.17.0"
|
@@ -1452,6 +1576,37 @@ wheels = [
|
|
1452
1576
|
{ url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 },
|
1453
1577
|
]
|
1454
1578
|
|
1579
|
+
[[package]]
|
1580
|
+
name = "websockets"
|
1581
|
+
version = "15.0.1"
|
1582
|
+
source = { registry = "https://pypi.org/simple" }
|
1583
|
+
sdist = { url = "https://files.pythonhosted.org/packages/21/e6/26d09fab466b7ca9c7737474c52be4f76a40301b08362eb2dbc19dcc16c1/websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee", size = 177016 }
|
1584
|
+
wheels = [
|
1585
|
+
{ url = "https://files.pythonhosted.org/packages/51/6b/4545a0d843594f5d0771e86463606a3988b5a09ca5123136f8a76580dd63/websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3", size = 175437 },
|
1586
|
+
{ url = "https://files.pythonhosted.org/packages/f4/71/809a0f5f6a06522af902e0f2ea2757f71ead94610010cf570ab5c98e99ed/websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665", size = 173096 },
|
1587
|
+
{ url = "https://files.pythonhosted.org/packages/3d/69/1a681dd6f02180916f116894181eab8b2e25b31e484c5d0eae637ec01f7c/websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2", size = 173332 },
|
1588
|
+
{ url = "https://files.pythonhosted.org/packages/a6/02/0073b3952f5bce97eafbb35757f8d0d54812b6174ed8dd952aa08429bcc3/websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8b56bdcdb4505c8078cb6c7157d9811a85790f2f2b3632c7d1462ab5783d215", size = 183152 },
|
1589
|
+
{ url = "https://files.pythonhosted.org/packages/74/45/c205c8480eafd114b428284840da0b1be9ffd0e4f87338dc95dc6ff961a1/websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0af68c55afbd5f07986df82831c7bff04846928ea8d1fd7f30052638788bc9b5", size = 182096 },
|
1590
|
+
{ url = "https://files.pythonhosted.org/packages/14/8f/aa61f528fba38578ec553c145857a181384c72b98156f858ca5c8e82d9d3/websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dee438fed052b52e4f98f76c5790513235efaa1ef7f3f2192c392cd7c91b65", size = 182523 },
|
1591
|
+
{ url = "https://files.pythonhosted.org/packages/ec/6d/0267396610add5bc0d0d3e77f546d4cd287200804fe02323797de77dbce9/websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d5f6b181bb38171a8ad1d6aa58a67a6aa9d4b38d0f8c5f496b9e42561dfc62fe", size = 182790 },
|
1592
|
+
{ url = "https://files.pythonhosted.org/packages/02/05/c68c5adbf679cf610ae2f74a9b871ae84564462955d991178f95a1ddb7dd/websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5d54b09eba2bada6011aea5375542a157637b91029687eb4fdb2dab11059c1b4", size = 182165 },
|
1593
|
+
{ url = "https://files.pythonhosted.org/packages/29/93/bb672df7b2f5faac89761cb5fa34f5cec45a4026c383a4b5761c6cea5c16/websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3be571a8b5afed347da347bfcf27ba12b069d9d7f42cb8c7028b5e98bbb12597", size = 182160 },
|
1594
|
+
{ url = "https://files.pythonhosted.org/packages/ff/83/de1f7709376dc3ca9b7eeb4b9a07b4526b14876b6d372a4dc62312bebee0/websockets-15.0.1-cp312-cp312-win32.whl", hash = "sha256:c338ffa0520bdb12fbc527265235639fb76e7bc7faafbb93f6ba80d9c06578a9", size = 176395 },
|
1595
|
+
{ url = "https://files.pythonhosted.org/packages/7d/71/abf2ebc3bbfa40f391ce1428c7168fb20582d0ff57019b69ea20fa698043/websockets-15.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcd5cf9e305d7b8338754470cf69cf81f420459dbae8a3b40cee57417f4614a7", size = 176841 },
|
1596
|
+
{ url = "https://files.pythonhosted.org/packages/cb/9f/51f0cf64471a9d2b4d0fc6c534f323b664e7095640c34562f5182e5a7195/websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee443ef070bb3b6ed74514f5efaa37a252af57c90eb33b956d35c8e9c10a1931", size = 175440 },
|
1597
|
+
{ url = "https://files.pythonhosted.org/packages/8a/05/aa116ec9943c718905997412c5989f7ed671bc0188ee2ba89520e8765d7b/websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5a939de6b7b4e18ca683218320fc67ea886038265fd1ed30173f5ce3f8e85675", size = 173098 },
|
1598
|
+
{ url = "https://files.pythonhosted.org/packages/ff/0b/33cef55ff24f2d92924923c99926dcce78e7bd922d649467f0eda8368923/websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:746ee8dba912cd6fc889a8147168991d50ed70447bf18bcda7039f7d2e3d9151", size = 173329 },
|
1599
|
+
{ url = "https://files.pythonhosted.org/packages/31/1d/063b25dcc01faa8fada1469bdf769de3768b7044eac9d41f734fd7b6ad6d/websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b6c3969023ecf9041b2936ac3827e4623bfa3ccf007575f04c5a6aa318c22", size = 183111 },
|
1600
|
+
{ url = "https://files.pythonhosted.org/packages/93/53/9a87ee494a51bf63e4ec9241c1ccc4f7c2f45fff85d5bde2ff74fcb68b9e/websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c714d2fc58b5ca3e285461a4cc0c9a66bd0e24c5da9911e30158286c9b5be7f", size = 182054 },
|
1601
|
+
{ url = "https://files.pythonhosted.org/packages/ff/b2/83a6ddf56cdcbad4e3d841fcc55d6ba7d19aeb89c50f24dd7e859ec0805f/websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8", size = 182496 },
|
1602
|
+
{ url = "https://files.pythonhosted.org/packages/98/41/e7038944ed0abf34c45aa4635ba28136f06052e08fc2168520bb8b25149f/websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:229cf1d3ca6c1804400b0a9790dc66528e08a6a1feec0d5040e8b9eb14422375", size = 182829 },
|
1603
|
+
{ url = "https://files.pythonhosted.org/packages/e0/17/de15b6158680c7623c6ef0db361da965ab25d813ae54fcfeae2e5b9ef910/websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:756c56e867a90fb00177d530dca4b097dd753cde348448a1012ed6c5131f8b7d", size = 182217 },
|
1604
|
+
{ url = "https://files.pythonhosted.org/packages/33/2b/1f168cb6041853eef0362fb9554c3824367c5560cbdaad89ac40f8c2edfc/websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4", size = 182195 },
|
1605
|
+
{ url = "https://files.pythonhosted.org/packages/86/eb/20b6cdf273913d0ad05a6a14aed4b9a85591c18a987a3d47f20fa13dcc47/websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa", size = 176393 },
|
1606
|
+
{ url = "https://files.pythonhosted.org/packages/1b/6c/c65773d6cab416a64d191d6ee8a8b1c68a09970ea6909d16965d26bfed1e/websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561", size = 176837 },
|
1607
|
+
{ url = "https://files.pythonhosted.org/packages/fa/a8/5b41e0da817d64113292ab1f8247140aac61cbf6cfd085d6a0fa77f4984f/websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f", size = 169743 },
|
1608
|
+
]
|
1609
|
+
|
1455
1610
|
[[package]]
|
1456
1611
|
name = "yarl"
|
1457
1612
|
version = "1.18.3"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|