codeocean-mcp-server 0.7.1__tar.gz → 0.7.2__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.
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/CHANGELOG.md +4 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/PKG-INFO +7 -1
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/README.md +6 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/pyproject.toml +2 -2
- codeocean_mcp_server-0.7.2/src/codeocean_mcp_server/logging_config.py +47 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/server.py +2 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/uv.lock +86 -86
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/.gitignore +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/.python-version +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/LICENSE +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/RELEASE.md +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/__init__.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/file_utils.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/models.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/tools/__init__.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/tools/capsules.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/tools/computations.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/tools/custom_metadata.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/tools/data_assets.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/tests/bedrock_call.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/tests/bedrock_tools_converter.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/tests/mcp_client.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/tests/test_multi_tool_calling.py +0 -0
- {codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/tests/test_tool_calling.py +0 -0
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
CHANGELOG
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## 0.7.2 (2025-12-27)
|
|
5
|
+
|
|
6
|
+
- [#20](https://github.com/codeocean/codeocean-mcp-server/pull/20) feat: custom log formatting
|
|
7
|
+
|
|
4
8
|
## 0.7.1 (2024-12-23)
|
|
5
9
|
|
|
6
10
|
- [#18](https://github.com/codeocean/codeocean-mcp-server/pull/18) chore: ruff format and dep update
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codeocean-mcp-server
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: Code Ocean MCP Server
|
|
5
5
|
Project-URL: Homepage, https://github.com/codeocean/codeocean-mcp-server
|
|
6
6
|
Project-URL: Issues, https://github.com/codeocean/codeocean-mcp-server/issues
|
|
@@ -228,3 +228,9 @@ This will start a web server where you can:
|
|
|
228
228
|
- View available tools and resources
|
|
229
229
|
- Test tool calls interactively
|
|
230
230
|
- See server logs and responses
|
|
231
|
+
|
|
232
|
+
## Log Formatting (Optional)
|
|
233
|
+
|
|
234
|
+
The MCP server supports custom log formatting through the `LOG_FORMAT` environment variable. This allows you to control the format of log messages output by the server.
|
|
235
|
+
**Example Format Strings:** `"%(asctime)s %(levelname)s [%(name)s] %(message)s"`.
|
|
236
|
+
If `LOG_FORMAT` is not set, the server uses FastMCP's default logging configuration.
|
|
@@ -210,3 +210,9 @@ This will start a web server where you can:
|
|
|
210
210
|
- View available tools and resources
|
|
211
211
|
- Test tool calls interactively
|
|
212
212
|
- See server logs and responses
|
|
213
|
+
|
|
214
|
+
## Log Formatting (Optional)
|
|
215
|
+
|
|
216
|
+
The MCP server supports custom log formatting through the `LOG_FORMAT` environment variable. This allows you to control the format of log messages output by the server.
|
|
217
|
+
**Example Format Strings:** `"%(asctime)s %(levelname)s [%(name)s] %(message)s"`.
|
|
218
|
+
If `LOG_FORMAT` is not set, the server uses FastMCP's default logging configuration.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codeocean-mcp-server"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.2"
|
|
4
4
|
authors = [{ name = "Code Ocean", email = "dev@codeocean.com" }]
|
|
5
5
|
description = "Code Ocean MCP Server"
|
|
6
6
|
readme = "README.md"
|
|
@@ -18,7 +18,7 @@ license = "MIT"
|
|
|
18
18
|
|
|
19
19
|
[dependency-groups]
|
|
20
20
|
dev = [
|
|
21
|
-
"boto3>=1.42.
|
|
21
|
+
"boto3>=1.42.17",
|
|
22
22
|
"deepdiff>=8.6.1",
|
|
23
23
|
"hatch>=1.16.2",
|
|
24
24
|
"mcp-python-client>=0.1.9",
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import os
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def configure_logging() -> None:
|
|
7
|
+
"""Configure logging based on LOG_FORMAT environment variable.
|
|
8
|
+
|
|
9
|
+
If LOG_FORMAT is set, configures the root logger with a StreamHandler
|
|
10
|
+
using the specified format string. This must be called before FastMCP
|
|
11
|
+
initialization to ensure our configuration takes precedence.
|
|
12
|
+
|
|
13
|
+
If LOG_FORMAT is not set or is empty, does nothing and lets FastMCP
|
|
14
|
+
configure logging with its default settings.
|
|
15
|
+
|
|
16
|
+
Environment variables:
|
|
17
|
+
LOG_FORMAT: Python logging format string (optional)
|
|
18
|
+
|
|
19
|
+
Examples:
|
|
20
|
+
- "%(asctime)s agent %(levelname)s [%(name)s] %(message)s"
|
|
21
|
+
- "%(levelname)s: %(message)s"
|
|
22
|
+
- "[%(name)s] %(message)s"
|
|
23
|
+
|
|
24
|
+
Note:
|
|
25
|
+
Invalid format strings will cause errors when log records are formatted,
|
|
26
|
+
not during initialization. This typically results in ValueError, KeyError,
|
|
27
|
+
or AttributeError being raised when logging occurs.
|
|
28
|
+
|
|
29
|
+
"""
|
|
30
|
+
log_format = os.getenv("LOG_FORMAT", "").strip()
|
|
31
|
+
|
|
32
|
+
# If LOG_FORMAT is not set or empty, do nothing
|
|
33
|
+
if not log_format:
|
|
34
|
+
return
|
|
35
|
+
|
|
36
|
+
# Create handler for stderr (same as FastMCP default)
|
|
37
|
+
handler = logging.StreamHandler(sys.stderr)
|
|
38
|
+
|
|
39
|
+
# Create formatter with the specified format string
|
|
40
|
+
# This will raise an error if the format string is invalid (fail fast)
|
|
41
|
+
formatter = logging.Formatter(log_format)
|
|
42
|
+
handler.setFormatter(formatter)
|
|
43
|
+
|
|
44
|
+
# Configure root logger
|
|
45
|
+
# This must be done before FastMCP calls logging.basicConfig()
|
|
46
|
+
logging.root.addHandler(handler)
|
|
47
|
+
logging.root.setLevel(logging.INFO)
|
{codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/server.py
RENAMED
|
@@ -3,6 +3,7 @@ import os
|
|
|
3
3
|
from codeocean import CodeOcean
|
|
4
4
|
from mcp.server.fastmcp import FastMCP
|
|
5
5
|
|
|
6
|
+
from codeocean_mcp_server.logging_config import configure_logging
|
|
6
7
|
from codeocean_mcp_server.tools import (
|
|
7
8
|
capsules,
|
|
8
9
|
computations,
|
|
@@ -13,6 +14,7 @@ from codeocean_mcp_server.tools import (
|
|
|
13
14
|
|
|
14
15
|
def main():
|
|
15
16
|
"""Run the MCP server."""
|
|
17
|
+
configure_logging()
|
|
16
18
|
domain = os.getenv("CODEOCEAN_DOMAIN")
|
|
17
19
|
token = os.getenv("CODEOCEAN_TOKEN")
|
|
18
20
|
if not domain or not token:
|
|
@@ -323,30 +323,30 @@ wheels = [
|
|
|
323
323
|
|
|
324
324
|
[[package]]
|
|
325
325
|
name = "boto3"
|
|
326
|
-
version = "1.42.
|
|
326
|
+
version = "1.42.17"
|
|
327
327
|
source = { registry = "https://pypi.org/simple" }
|
|
328
328
|
dependencies = [
|
|
329
329
|
{ name = "botocore" },
|
|
330
330
|
{ name = "jmespath" },
|
|
331
331
|
{ name = "s3transfer" },
|
|
332
332
|
]
|
|
333
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
333
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8d/cf/6e4a794e73cbf3e774ec27a5acc8442ce55d97cfc5226a20c1f58d8aee16/boto3-1.42.17.tar.gz", hash = "sha256:8a2e345e96d5ceba755c55539c93f99705f403fbfdeef2e838eabdc56750828b", size = 112776, upload-time = "2025-12-26T20:33:38.289Z" }
|
|
334
334
|
wheels = [
|
|
335
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
335
|
+
{ url = "https://files.pythonhosted.org/packages/6c/53/9f4241152eb1f5a57351232c14ef411ef35fbcc1d97a63873235d0503a8a/boto3-1.42.17-py3-none-any.whl", hash = "sha256:e0ee40f7102712452f6776af891c8f49b5ae9133bdaf22711d6f4a78963c2614", size = 140572, upload-time = "2025-12-26T20:33:36.307Z" },
|
|
336
336
|
]
|
|
337
337
|
|
|
338
338
|
[[package]]
|
|
339
339
|
name = "botocore"
|
|
340
|
-
version = "1.42.
|
|
340
|
+
version = "1.42.17"
|
|
341
341
|
source = { registry = "https://pypi.org/simple" }
|
|
342
342
|
dependencies = [
|
|
343
343
|
{ name = "jmespath" },
|
|
344
344
|
{ name = "python-dateutil" },
|
|
345
345
|
{ name = "urllib3" },
|
|
346
346
|
]
|
|
347
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
347
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4d/d2/128e2d8b9d426bd3a339e7dcf3eedca55f449af121604b6891ae80f6be9a/botocore-1.42.17.tar.gz", hash = "sha256:d73fe22c8e1497e4d59ff7dc68eb05afac68a4a6457656811562285d6132bc04", size = 14911757, upload-time = "2025-12-26T20:33:27.641Z" }
|
|
348
348
|
wheels = [
|
|
349
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
349
|
+
{ url = "https://files.pythonhosted.org/packages/d1/47/cc00f2421f49784de8b9113c94b7b6580db989721f5109a24b9108308fe1/botocore-1.42.17-py3-none-any.whl", hash = "sha256:a832e4c04e63141221480967e9e511363aa54d24c405935fccb913a18583c96b", size = 14586536, upload-time = "2025-12-26T20:33:24.032Z" },
|
|
350
350
|
]
|
|
351
351
|
|
|
352
352
|
[[package]]
|
|
@@ -529,7 +529,7 @@ wheels = [
|
|
|
529
529
|
|
|
530
530
|
[[package]]
|
|
531
531
|
name = "codeocean-mcp-server"
|
|
532
|
-
version = "0.7.
|
|
532
|
+
version = "0.7.2"
|
|
533
533
|
source = { editable = "." }
|
|
534
534
|
dependencies = [
|
|
535
535
|
{ name = "codeocean" },
|
|
@@ -554,7 +554,7 @@ requires-dist = [
|
|
|
554
554
|
|
|
555
555
|
[package.metadata.requires-dev]
|
|
556
556
|
dev = [
|
|
557
|
-
{ name = "boto3", specifier = ">=1.42.
|
|
557
|
+
{ name = "boto3", specifier = ">=1.42.17" },
|
|
558
558
|
{ name = "deepdiff", specifier = ">=8.6.1" },
|
|
559
559
|
{ name = "hatch", specifier = ">=1.16.2" },
|
|
560
560
|
{ name = "mcp-python-client", specifier = ">=0.1.9" },
|
|
@@ -1184,14 +1184,14 @@ wheels = [
|
|
|
1184
1184
|
|
|
1185
1185
|
[[package]]
|
|
1186
1186
|
name = "jaraco-context"
|
|
1187
|
-
version = "6.0.
|
|
1187
|
+
version = "6.0.2"
|
|
1188
1188
|
source = { registry = "https://pypi.org/simple" }
|
|
1189
1189
|
dependencies = [
|
|
1190
1190
|
{ name = "backports-tarfile", marker = "python_full_version < '3.12'" },
|
|
1191
1191
|
]
|
|
1192
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1192
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8d/7d/41acf8e22d791bde812cb6c2c36128bb932ed8ae066bcb5e39cb198e8253/jaraco_context-6.0.2.tar.gz", hash = "sha256:953ae8dddb57b1d791bf72ea1009b32088840a7dd19b9ba16443f62be919ee57", size = 14994, upload-time = "2025-12-24T19:21:35.784Z" }
|
|
1193
1193
|
wheels = [
|
|
1194
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1194
|
+
{ url = "https://files.pythonhosted.org/packages/c7/0c/1e0096ced9c55f9c6c6655446798df74165780375d3f5ab5f33751e087ae/jaraco_context-6.0.2-py3-none-any.whl", hash = "sha256:55fc21af4b4f9ca94aa643b6ee7fe13b1e4c01abf3aeb98ca4ad9c80b741c786", size = 6988, upload-time = "2025-12-24T19:21:34.557Z" },
|
|
1195
1195
|
]
|
|
1196
1196
|
|
|
1197
1197
|
[[package]]
|
|
@@ -1380,75 +1380,75 @@ wheels = [
|
|
|
1380
1380
|
|
|
1381
1381
|
[[package]]
|
|
1382
1382
|
name = "librt"
|
|
1383
|
-
version = "0.7.
|
|
1384
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1385
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1386
|
-
wheels = [
|
|
1387
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1388
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1389
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1390
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1391
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1392
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1393
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1394
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1395
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1396
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1397
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1398
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1399
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1400
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1401
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1402
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1403
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1404
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1405
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1406
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1407
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1408
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1409
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1410
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1411
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1412
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1413
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1414
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1415
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1416
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1417
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1418
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1419
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1420
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1421
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1422
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1423
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1424
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1425
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1426
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1427
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1428
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1429
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1430
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1431
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1432
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1433
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1434
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1435
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1436
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1437
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1438
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1439
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1440
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1441
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1442
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1443
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1444
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1445
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1446
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1447
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1448
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1449
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1450
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1451
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1383
|
+
version = "0.7.5"
|
|
1384
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1385
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b5/8a/071f6628363d83e803d4783e0cd24fb9c5b798164300fcfaaa47c30659c0/librt-0.7.5.tar.gz", hash = "sha256:de4221a1181fa9c8c4b5f35506ed6f298948f44003d84d2a8b9885d7e01e6cfa", size = 145868, upload-time = "2025-12-25T03:53:16.039Z" }
|
|
1386
|
+
wheels = [
|
|
1387
|
+
{ url = "https://files.pythonhosted.org/packages/88/f2/3248d8419db99ab80bb36266735d1241f766ad5fd993071211f789b618a5/librt-0.7.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:81056e01bba1394f1d92904ec61a4078f66df785316275edbaf51d90da8c6e26", size = 54703, upload-time = "2025-12-25T03:51:48.394Z" },
|
|
1388
|
+
{ url = "https://files.pythonhosted.org/packages/7b/30/7e179543dbcb1311f84b7e797658ad85cf2d4474c468f5dbafa13f2a98a5/librt-0.7.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d7c72c8756eeb3aefb1b9e3dac7c37a4a25db63640cac0ab6fc18e91a0edf05a", size = 56660, upload-time = "2025-12-25T03:51:49.791Z" },
|
|
1389
|
+
{ url = "https://files.pythonhosted.org/packages/15/91/3ba03ac1ac1abd66757a134b3bd56d9674928b163d0e686ea065a2bbb92d/librt-0.7.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:ddc4a16207f88f9597b397fc1f60781266d13b13de922ff61c206547a29e4bbd", size = 161026, upload-time = "2025-12-25T03:51:51.021Z" },
|
|
1390
|
+
{ url = "https://files.pythonhosted.org/packages/0d/6e/b8365f547817d37b44c4be2ffa02630be995ef18be52d72698cecc3640c5/librt-0.7.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:63055d3dda433ebb314c9f1819942f16a19203c454508fdb2d167613f7017169", size = 169530, upload-time = "2025-12-25T03:51:52.417Z" },
|
|
1391
|
+
{ url = "https://files.pythonhosted.org/packages/63/6a/8442eb0b6933c651a06e1888f863971f3391cc11338fdaa6ab969f7d1eac/librt-0.7.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9f85f9b5db87b0f52e53c68ad2a0c5a53e00afa439bd54a1723742a2b1021276", size = 183272, upload-time = "2025-12-25T03:51:53.713Z" },
|
|
1392
|
+
{ url = "https://files.pythonhosted.org/packages/90/c4/b1166df6ef8e1f68d309f50bf69e8e750a5ea12fe7e2cf202c771ff359fc/librt-0.7.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c566a4672564c5d54d8ab65cdaae5a87ee14c1564c1a2ddc7a9f5811c750f023", size = 179040, upload-time = "2025-12-25T03:51:55.048Z" },
|
|
1393
|
+
{ url = "https://files.pythonhosted.org/packages/fc/30/8f3fd9fd975b16c37832d6c248b976d2a0e33f155063781e064f249b37f1/librt-0.7.5-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fee15c2a190ef389f14928135c6fb2d25cd3fdb7887bfd9a7b444bbdc8c06b96", size = 173506, upload-time = "2025-12-25T03:51:56.407Z" },
|
|
1394
|
+
{ url = "https://files.pythonhosted.org/packages/75/71/c3d4d5658f9849bf8e07ffba99f892d49a0c9a4001323ed610db72aedc82/librt-0.7.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:584cb3e605ec45ba350962cec853e17be0a25a772f21f09f1e422f7044ae2a7d", size = 193573, upload-time = "2025-12-25T03:51:57.949Z" },
|
|
1395
|
+
{ url = "https://files.pythonhosted.org/packages/86/7c/c1c8a0116a2eed3d58c8946c589a8f9e1354b9b825cc92eba58bb15f6fb1/librt-0.7.5-cp310-cp310-win32.whl", hash = "sha256:9c08527055fbb03c641c15bbc5b79dd2942fb6a3bd8dabf141dd7e97eeea4904", size = 42603, upload-time = "2025-12-25T03:51:59.215Z" },
|
|
1396
|
+
{ url = "https://files.pythonhosted.org/packages/1d/00/b52c77ca294247420020b829b70465c6e6f2b9d59ab21d8051aac20432da/librt-0.7.5-cp310-cp310-win_amd64.whl", hash = "sha256:dd810f2d39c526c42ea205e0addad5dc08ef853c625387806a29d07f9d150d9b", size = 48977, upload-time = "2025-12-25T03:52:00.519Z" },
|
|
1397
|
+
{ url = "https://files.pythonhosted.org/packages/11/89/42b3ccb702a7e5f7a4cf2afc8a0a8f8c5e7d4b4d3a7c3de6357673dddddb/librt-0.7.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f952e1a78c480edee8fb43aa2bf2e84dcd46c917d44f8065b883079d3893e8fc", size = 54705, upload-time = "2025-12-25T03:52:01.433Z" },
|
|
1398
|
+
{ url = "https://files.pythonhosted.org/packages/bb/90/c16970b509c3c448c365041d326eeef5aeb2abaed81eb3187b26a3cd13f8/librt-0.7.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75965c1f4efb7234ff52a58b729d245a21e87e4b6a26a0ec08052f02b16274e4", size = 56667, upload-time = "2025-12-25T03:52:02.391Z" },
|
|
1399
|
+
{ url = "https://files.pythonhosted.org/packages/ac/2f/da4bdf6c190503f4663fbb781dfae5564a2b1c3f39a2da8e1ac7536ac7bd/librt-0.7.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:732e0aa0385b59a1b2545159e781c792cc58ce9c134249233a7c7250a44684c4", size = 161705, upload-time = "2025-12-25T03:52:03.395Z" },
|
|
1400
|
+
{ url = "https://files.pythonhosted.org/packages/fb/88/c5da8e1f5f22b23d56e1fbd87266799dcf32828d47bf69fabc6f9673c6eb/librt-0.7.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cdde31759bd8888f3ef0eebda80394a48961328a17c264dce8cc35f4b9cde35d", size = 171029, upload-time = "2025-12-25T03:52:04.798Z" },
|
|
1401
|
+
{ url = "https://files.pythonhosted.org/packages/38/8a/8dfc00a6f1febc094ed9a55a448fc0b3a591b5dfd83be6cfd76d0910b1f0/librt-0.7.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:df3146d52465b3b6397d25d513f428cb421c18df65b7378667bb5f1e3cc45805", size = 184704, upload-time = "2025-12-25T03:52:05.887Z" },
|
|
1402
|
+
{ url = "https://files.pythonhosted.org/packages/ad/57/65dec835ff235f431801064a3b41268f2f5ee0d224dc3bbf46d911af5c1a/librt-0.7.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:29c8d2fae11d4379ea207ba7fc69d43237e42cf8a9f90ec6e05993687e6d648b", size = 180720, upload-time = "2025-12-25T03:52:06.925Z" },
|
|
1403
|
+
{ url = "https://files.pythonhosted.org/packages/1e/27/92033d169bbcaa0d9a2dd476c179e5171ec22ed574b1b135a3c6104fb7d4/librt-0.7.5-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb41f04046b4f22b1e7ba5ef513402cd2e3477ec610e5f92d38fe2bba383d419", size = 174538, upload-time = "2025-12-25T03:52:08.075Z" },
|
|
1404
|
+
{ url = "https://files.pythonhosted.org/packages/44/5c/0127098743575d5340624d8d4ec508d4d5ff0877dcee6f55f54bf03e5ed0/librt-0.7.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8bb7883c1e94ceb87c2bf81385266f032da09cd040e804cc002f2c9d6b842e2f", size = 195240, upload-time = "2025-12-25T03:52:09.427Z" },
|
|
1405
|
+
{ url = "https://files.pythonhosted.org/packages/47/0f/be028c3e906a8ee6d29a42fd362e6d57d4143057f2bc0c454d489a0f898b/librt-0.7.5-cp311-cp311-win32.whl", hash = "sha256:84d4a6b9efd6124f728558a18e79e7cc5c5d4efc09b2b846c910de7e564f5bad", size = 42941, upload-time = "2025-12-25T03:52:10.527Z" },
|
|
1406
|
+
{ url = "https://files.pythonhosted.org/packages/ac/3a/2f0ed57f4c3ae3c841780a95dfbea4cd811c6842d9ee66171ce1af606d25/librt-0.7.5-cp311-cp311-win_amd64.whl", hash = "sha256:ab4b0d3bee6f6ff7017e18e576ac7e41a06697d8dea4b8f3ab9e0c8e1300c409", size = 49244, upload-time = "2025-12-25T03:52:11.832Z" },
|
|
1407
|
+
{ url = "https://files.pythonhosted.org/packages/ee/7c/d7932aedfa5a87771f9e2799e7185ec3a322f4a1f4aa87c234159b75c8c8/librt-0.7.5-cp311-cp311-win_arm64.whl", hash = "sha256:730be847daad773a3c898943cf67fb9845a3961d06fb79672ceb0a8cd8624cfa", size = 42614, upload-time = "2025-12-25T03:52:12.745Z" },
|
|
1408
|
+
{ url = "https://files.pythonhosted.org/packages/33/9d/cb0a296cee177c0fee7999ada1c1af7eee0e2191372058814a4ca6d2baf0/librt-0.7.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ba1077c562a046208a2dc6366227b3eeae8f2c2ab4b41eaf4fd2fa28cece4203", size = 55689, upload-time = "2025-12-25T03:52:14.041Z" },
|
|
1409
|
+
{ url = "https://files.pythonhosted.org/packages/79/5c/d7de4d4228b74c5b81a3fbada157754bb29f0e1f8c38229c669a7f90422a/librt-0.7.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:654fdc971c76348a73af5240d8e2529265b9a7ba6321e38dd5bae7b0d4ab3abe", size = 57142, upload-time = "2025-12-25T03:52:15.336Z" },
|
|
1410
|
+
{ url = "https://files.pythonhosted.org/packages/e5/b2/5da779184aae369b69f4ae84225f63741662a0fe422e91616c533895d7a4/librt-0.7.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:6b7b58913d475911f6f33e8082f19dd9b120c4f4a5c911d07e395d67b81c6982", size = 165323, upload-time = "2025-12-25T03:52:16.384Z" },
|
|
1411
|
+
{ url = "https://files.pythonhosted.org/packages/5a/40/6d5abc15ab6cc70e04c4d201bb28baffff4cfb46ab950b8e90935b162d58/librt-0.7.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8e0fd344bad57026a8f4ccfaf406486c2fc991838050c2fef156170edc3b775", size = 174218, upload-time = "2025-12-25T03:52:17.518Z" },
|
|
1412
|
+
{ url = "https://files.pythonhosted.org/packages/0d/d0/5239a8507e6117a3cb59ce0095bdd258bd2a93d8d4b819a506da06d8d645/librt-0.7.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46aa91813c267c3f60db75d56419b42c0c0b9748ec2c568a0e3588e543fb4233", size = 189007, upload-time = "2025-12-25T03:52:18.585Z" },
|
|
1413
|
+
{ url = "https://files.pythonhosted.org/packages/1f/a4/8eed1166ffddbb01c25363e4c4e655f4bac298debe9e5a2dcfaf942438a1/librt-0.7.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ddc0ab9dbc5f9ceaf2bf7a367bf01f2697660e908f6534800e88f43590b271db", size = 183962, upload-time = "2025-12-25T03:52:19.723Z" },
|
|
1414
|
+
{ url = "https://files.pythonhosted.org/packages/a1/83/260e60aab2f5ccba04579c5c46eb3b855e51196fde6e2bcf6742d89140a8/librt-0.7.5-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7a488908a470451338607650f1c064175094aedebf4a4fa37890682e30ce0b57", size = 177611, upload-time = "2025-12-25T03:52:21.18Z" },
|
|
1415
|
+
{ url = "https://files.pythonhosted.org/packages/c4/36/6dcfed0df41e9695665462bab59af15b7ed2b9c668d85c7ebadd022cbb76/librt-0.7.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e47fc52602ffc374e69bf1b76536dc99f7f6dd876bd786c8213eaa3598be030a", size = 199273, upload-time = "2025-12-25T03:52:22.25Z" },
|
|
1416
|
+
{ url = "https://files.pythonhosted.org/packages/a6/b7/157149c8cffae6bc4293a52e0267860cee2398cb270798d94f1c8a69b9ae/librt-0.7.5-cp312-cp312-win32.whl", hash = "sha256:cda8b025875946ffff5a9a7590bf9acde3eb02cb6200f06a2d3e691ef3d9955b", size = 43191, upload-time = "2025-12-25T03:52:23.643Z" },
|
|
1417
|
+
{ url = "https://files.pythonhosted.org/packages/f8/91/197dfeb8d3bdeb0a5344d0d8b3077f183ba5e76c03f158126f6072730998/librt-0.7.5-cp312-cp312-win_amd64.whl", hash = "sha256:b591c094afd0ffda820e931148c9e48dc31a556dc5b2b9b3cc552fa710d858e4", size = 49462, upload-time = "2025-12-25T03:52:24.637Z" },
|
|
1418
|
+
{ url = "https://files.pythonhosted.org/packages/03/ea/052a79454cc52081dfaa9a1c4c10a529f7a6a6805b2fac5805fea5b25975/librt-0.7.5-cp312-cp312-win_arm64.whl", hash = "sha256:532ddc6a8a6ca341b1cd7f4d999043e4c71a212b26fe9fd2e7f1e8bb4e873544", size = 42830, upload-time = "2025-12-25T03:52:25.944Z" },
|
|
1419
|
+
{ url = "https://files.pythonhosted.org/packages/9f/9a/8f61e16de0ff76590af893cfb5b1aa5fa8b13e5e54433d0809c7033f59ed/librt-0.7.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b1795c4b2789b458fa290059062c2f5a297ddb28c31e704d27e161386469691a", size = 55750, upload-time = "2025-12-25T03:52:26.975Z" },
|
|
1420
|
+
{ url = "https://files.pythonhosted.org/packages/05/7c/a8a883804851a066f301e0bad22b462260b965d5c9e7fe3c5de04e6f91f8/librt-0.7.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2fcbf2e135c11f721193aa5f42ba112bb1046afafbffd407cbc81d8d735c74d0", size = 57170, upload-time = "2025-12-25T03:52:27.948Z" },
|
|
1421
|
+
{ url = "https://files.pythonhosted.org/packages/d6/5d/b3b47facf5945be294cf8a835b03589f70ee0e791522f99ec6782ed738b3/librt-0.7.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:c039bbf79a9a2498404d1ae7e29a6c175e63678d7a54013a97397c40aee026c5", size = 165834, upload-time = "2025-12-25T03:52:29.09Z" },
|
|
1422
|
+
{ url = "https://files.pythonhosted.org/packages/b4/b6/b26910cd0a4e43e5d02aacaaea0db0d2a52e87660dca08293067ee05601a/librt-0.7.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3919c9407faeeee35430ae135e3a78acd4ecaaaa73767529e2c15ca1d73ba325", size = 174820, upload-time = "2025-12-25T03:52:30.463Z" },
|
|
1423
|
+
{ url = "https://files.pythonhosted.org/packages/a5/a3/81feddd345d4c869b7a693135a462ae275f964fcbbe793d01ea56a84c2ee/librt-0.7.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:26b46620e1e0e45af510d9848ea0915e7040605dd2ae94ebefb6c962cbb6f7ec", size = 189609, upload-time = "2025-12-25T03:52:31.492Z" },
|
|
1424
|
+
{ url = "https://files.pythonhosted.org/packages/ce/a9/31310796ef4157d1d37648bf4a3b84555319f14cee3e9bad7bdd7bfd9a35/librt-0.7.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9bbb8facc5375476d392990dd6a71f97e4cb42e2ac66f32e860f6e47299d5e89", size = 184589, upload-time = "2025-12-25T03:52:32.59Z" },
|
|
1425
|
+
{ url = "https://files.pythonhosted.org/packages/32/22/da3900544cb0ac6ab7a2857850158a0a093b86f92b264aa6c4a4f2355ff3/librt-0.7.5-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:e9e9c988b5ffde7be02180f864cbd17c0b0c1231c235748912ab2afa05789c25", size = 178251, upload-time = "2025-12-25T03:52:33.745Z" },
|
|
1426
|
+
{ url = "https://files.pythonhosted.org/packages/db/77/78e02609846e78b9b8c8e361753b3dbac9a07e6d5b567fe518de9e074ab0/librt-0.7.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:edf6b465306215b19dbe6c3fb63cf374a8f3e1ad77f3b4c16544b83033bbb67b", size = 199852, upload-time = "2025-12-25T03:52:34.826Z" },
|
|
1427
|
+
{ url = "https://files.pythonhosted.org/packages/2a/25/05706f6b346429c951582f1b3561f4d5e1418d0d7ba1a0c181237cd77b3b/librt-0.7.5-cp313-cp313-win32.whl", hash = "sha256:060bde69c3604f694bd8ae21a780fe8be46bb3dbb863642e8dfc75c931ca8eee", size = 43250, upload-time = "2025-12-25T03:52:35.905Z" },
|
|
1428
|
+
{ url = "https://files.pythonhosted.org/packages/d9/59/c38677278ac0b9ae1afc611382ef6c9ea87f52ad257bd3d8d65f0eacdc6a/librt-0.7.5-cp313-cp313-win_amd64.whl", hash = "sha256:a82d5a0ee43aeae2116d7292c77cc8038f4841830ade8aa922e098933b468b9e", size = 49421, upload-time = "2025-12-25T03:52:36.895Z" },
|
|
1429
|
+
{ url = "https://files.pythonhosted.org/packages/c0/47/1d71113df4a81de5fdfbd3d7244e05d3d67e89f25455c3380ca50b92741e/librt-0.7.5-cp313-cp313-win_arm64.whl", hash = "sha256:3c98a8d0ac9e2a7cb8ff8c53e5d6e8d82bfb2839abf144fdeaaa832f2a12aa45", size = 42827, upload-time = "2025-12-25T03:52:37.856Z" },
|
|
1430
|
+
{ url = "https://files.pythonhosted.org/packages/97/ae/8635b4efdc784220f1378be640d8b1a794332f7f6ea81bb4859bf9d18aa7/librt-0.7.5-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:9937574e6d842f359b8585903d04f5b4ab62277a091a93e02058158074dc52f2", size = 55191, upload-time = "2025-12-25T03:52:38.839Z" },
|
|
1431
|
+
{ url = "https://files.pythonhosted.org/packages/52/11/ed7ef6955dc2032af37db9b0b31cd5486a138aa792e1bb9e64f0f4950e27/librt-0.7.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:5cd3afd71e9bc146203b6c8141921e738364158d4aa7cdb9a874e2505163770f", size = 56894, upload-time = "2025-12-25T03:52:39.805Z" },
|
|
1432
|
+
{ url = "https://files.pythonhosted.org/packages/24/f1/02921d4a66a1b5dcd0493b89ce76e2762b98c459fe2ad04b67b2ea6fdd39/librt-0.7.5-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:9cffa3ef0af29687455161cb446eff059bf27607f95163d6a37e27bcb37180f6", size = 163726, upload-time = "2025-12-25T03:52:40.79Z" },
|
|
1433
|
+
{ url = "https://files.pythonhosted.org/packages/65/87/27df46d2756fcb7a82fa7f6ca038a0c6064c3e93ba65b0b86fbf6a4f76a2/librt-0.7.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:82f3f088482e2229387eadf8215c03f7726d56f69cce8c0c40f0795aebc9b361", size = 172470, upload-time = "2025-12-25T03:52:42.226Z" },
|
|
1434
|
+
{ url = "https://files.pythonhosted.org/packages/9f/a9/e65a35e5d423639f4f3d8e17301ff13cc41c2ff97677fe9c361c26dbfbb7/librt-0.7.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d7aa33153a5bb0bac783d2c57885889b1162823384e8313d47800a0e10d0070e", size = 186807, upload-time = "2025-12-25T03:52:43.688Z" },
|
|
1435
|
+
{ url = "https://files.pythonhosted.org/packages/d7/b0/ac68aa582a996b1241773bd419823290c42a13dc9f494704a12a17ddd7b6/librt-0.7.5-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:265729b551a2dd329cc47b323a182fb7961af42abf21e913c9dd7d3331b2f3c2", size = 181810, upload-time = "2025-12-25T03:52:45.095Z" },
|
|
1436
|
+
{ url = "https://files.pythonhosted.org/packages/e1/c1/03f6717677f20acd2d690813ec2bbe12a2de305f32c61479c53f7b9413bc/librt-0.7.5-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:168e04663e126416ba712114050f413ac306759a1791d87b7c11d4428ba75760", size = 175599, upload-time = "2025-12-25T03:52:46.177Z" },
|
|
1437
|
+
{ url = "https://files.pythonhosted.org/packages/01/d7/f976ff4c07c59b69bb5eec7e5886d43243075bbef834428124b073471c86/librt-0.7.5-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:553dc58987d1d853adda8aeadf4db8e29749f0b11877afcc429a9ad892818ae2", size = 196506, upload-time = "2025-12-25T03:52:47.327Z" },
|
|
1438
|
+
{ url = "https://files.pythonhosted.org/packages/b7/74/004f068b8888e61b454568b5479f88018fceb14e511ac0609cccee7dd227/librt-0.7.5-cp314-cp314-win32.whl", hash = "sha256:263f4fae9eba277513357c871275b18d14de93fd49bf5e43dc60a97b81ad5eb8", size = 39747, upload-time = "2025-12-25T03:52:48.437Z" },
|
|
1439
|
+
{ url = "https://files.pythonhosted.org/packages/37/b1/ea3ec8fcf5f0a00df21f08972af77ad799604a306db58587308067d27af8/librt-0.7.5-cp314-cp314-win_amd64.whl", hash = "sha256:85f485b7471571e99fab4f44eeb327dc0e1f814ada575f3fa85e698417d8a54e", size = 45970, upload-time = "2025-12-25T03:52:49.389Z" },
|
|
1440
|
+
{ url = "https://files.pythonhosted.org/packages/5d/30/5e3fb7ac4614a50fc67e6954926137d50ebc27f36419c9963a94f931f649/librt-0.7.5-cp314-cp314-win_arm64.whl", hash = "sha256:49c596cd18e90e58b7caa4d7ca7606049c1802125fcff96b8af73fa5c3870e4d", size = 39075, upload-time = "2025-12-25T03:52:50.395Z" },
|
|
1441
|
+
{ url = "https://files.pythonhosted.org/packages/a4/7f/0af0a9306a06c2aabee3a790f5aa560c50ec0a486ab818a572dd3db6c851/librt-0.7.5-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:54d2aef0b0f5056f130981ad45081b278602ff3657fe16c88529f5058038e802", size = 57375, upload-time = "2025-12-25T03:52:51.439Z" },
|
|
1442
|
+
{ url = "https://files.pythonhosted.org/packages/57/1f/c85e510baf6572a3d6ef40c742eacedc02973ed2acdb5dba2658751d9af8/librt-0.7.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0b4791202296ad51ac09a3ff58eb49d9da8e3a4009167a6d76ac418a974e5fd4", size = 59234, upload-time = "2025-12-25T03:52:52.687Z" },
|
|
1443
|
+
{ url = "https://files.pythonhosted.org/packages/49/b1/bb6535e4250cd18b88d6b18257575a0239fa1609ebba925f55f51ae08e8e/librt-0.7.5-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:6e860909fea75baef941ee6436e0453612505883b9d0d87924d4fda27865b9a2", size = 183873, upload-time = "2025-12-25T03:52:53.705Z" },
|
|
1444
|
+
{ url = "https://files.pythonhosted.org/packages/8e/49/ad4a138cca46cdaa7f0e15fa912ce3ccb4cc0d4090bfeb8ccc35766fa6d5/librt-0.7.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f02c4337bf271c4f06637f5ff254fad2238c0b8e32a3a480ebb2fc5e26f754a5", size = 194609, upload-time = "2025-12-25T03:52:54.884Z" },
|
|
1445
|
+
{ url = "https://files.pythonhosted.org/packages/9c/2d/3b3cb933092d94bb2c1d3c9b503d8775f08d806588c19a91ee4d1495c2a8/librt-0.7.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7f51ffe59f4556243d3cc82d827bde74765f594fa3ceb80ec4de0c13ccd3416", size = 206777, upload-time = "2025-12-25T03:52:55.969Z" },
|
|
1446
|
+
{ url = "https://files.pythonhosted.org/packages/3a/52/6e7611d3d1347812233dabc44abca4c8065ee97b83c9790d7ecc3f782bc8/librt-0.7.5-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0b7f080ba30601dfa3e3deed3160352273e1b9bc92e652f51103c3e9298f7899", size = 203208, upload-time = "2025-12-25T03:52:57.036Z" },
|
|
1447
|
+
{ url = "https://files.pythonhosted.org/packages/27/aa/466ae4654bd2d45903fbf180815d41e3ae8903e5a1861f319f73c960a843/librt-0.7.5-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:fb565b4219abc8ea2402e61c7ba648a62903831059ed3564fa1245cc245d58d7", size = 196698, upload-time = "2025-12-25T03:52:58.481Z" },
|
|
1448
|
+
{ url = "https://files.pythonhosted.org/packages/97/8f/424f7e4525bb26fe0d3e984d1c0810ced95e53be4fd867ad5916776e18a3/librt-0.7.5-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:8a3cfb15961e7333ea6ef033dc574af75153b5c230d5ad25fbcd55198f21e0cf", size = 217194, upload-time = "2025-12-25T03:52:59.575Z" },
|
|
1449
|
+
{ url = "https://files.pythonhosted.org/packages/9e/33/13a4cb798a171b173f3c94db23adaf13a417130e1493933dc0df0d7fb439/librt-0.7.5-cp314-cp314t-win32.whl", hash = "sha256:118716de5ad6726332db1801bc90fa6d94194cd2e07c1a7822cebf12c496714d", size = 40282, upload-time = "2025-12-25T03:53:01.091Z" },
|
|
1450
|
+
{ url = "https://files.pythonhosted.org/packages/5f/f1/62b136301796399d65dad73b580f4509bcbd347dff885a450bff08e80cb6/librt-0.7.5-cp314-cp314t-win_amd64.whl", hash = "sha256:3dd58f7ce20360c6ce0c04f7bd9081c7f9c19fc6129a3c705d0c5a35439f201d", size = 46764, upload-time = "2025-12-25T03:53:02.381Z" },
|
|
1451
|
+
{ url = "https://files.pythonhosted.org/packages/49/cb/940431d9410fda74f941f5cd7f0e5a22c63be7b0c10fa98b2b7022b48cb1/librt-0.7.5-cp314-cp314t-win_arm64.whl", hash = "sha256:08153ea537609d11f774d2bfe84af39d50d5c9ca3a4d061d946e0c9d8bce04a1", size = 39728, upload-time = "2025-12-25T03:53:03.306Z" },
|
|
1452
1452
|
]
|
|
1453
1453
|
|
|
1454
1454
|
[[package]]
|
|
@@ -2744,15 +2744,15 @@ wheels = [
|
|
|
2744
2744
|
|
|
2745
2745
|
[[package]]
|
|
2746
2746
|
name = "sse-starlette"
|
|
2747
|
-
version = "3.
|
|
2747
|
+
version = "3.1.1"
|
|
2748
2748
|
source = { registry = "https://pypi.org/simple" }
|
|
2749
2749
|
dependencies = [
|
|
2750
2750
|
{ name = "anyio" },
|
|
2751
2751
|
{ name = "starlette" },
|
|
2752
2752
|
]
|
|
2753
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2753
|
+
sdist = { url = "https://files.pythonhosted.org/packages/62/08/8f554b0e5bad3e4e880521a1686d96c05198471eed860b0eb89b57ea3636/sse_starlette-3.1.1.tar.gz", hash = "sha256:bffa531420c1793ab224f63648c059bcadc412bf9fdb1301ac8de1cf9a67b7fb", size = 24306, upload-time = "2025-12-26T15:22:53.836Z" }
|
|
2754
2754
|
wheels = [
|
|
2755
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2755
|
+
{ url = "https://files.pythonhosted.org/packages/e3/31/4c281581a0f8de137b710a07f65518b34bcf333b201cfa06cfda9af05f8a/sse_starlette-3.1.1-py3-none-any.whl", hash = "sha256:bb38f71ae74cfd86b529907a9fda5632195dfa6ae120f214ea4c890c7ee9d436", size = 12442, upload-time = "2025-12-26T15:22:52.911Z" },
|
|
2756
2756
|
]
|
|
2757
2757
|
|
|
2758
2758
|
[[package]]
|
|
@@ -2944,15 +2944,15 @@ wheels = [
|
|
|
2944
2944
|
|
|
2945
2945
|
[[package]]
|
|
2946
2946
|
name = "typer-slim"
|
|
2947
|
-
version = "0.
|
|
2947
|
+
version = "0.21.0"
|
|
2948
2948
|
source = { registry = "https://pypi.org/simple" }
|
|
2949
2949
|
dependencies = [
|
|
2950
2950
|
{ name = "click" },
|
|
2951
2951
|
{ name = "typing-extensions" },
|
|
2952
2952
|
]
|
|
2953
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2953
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f9/3b/2f60ce16f578b1db5b8816d37d6a4d9786b33b76407fc8c13b0b86312c31/typer_slim-0.21.0.tar.gz", hash = "sha256:f2dbd150cfa0fead2242e21fa9f654dfc64773763ddf07c6be9a49ad34f79557", size = 106841, upload-time = "2025-12-25T09:54:55.998Z" }
|
|
2954
2954
|
wheels = [
|
|
2955
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2955
|
+
{ url = "https://files.pythonhosted.org/packages/b4/84/e97abf10e4a699194ff07fd586ec7f4cf867d9d04bead559a65f9e7aff84/typer_slim-0.21.0-py3-none-any.whl", hash = "sha256:92aee2188ac6fc2b2924bd75bb61a340b78bd8cd51fd9735533ce5a856812c8e", size = 47174, upload-time = "2025-12-25T09:54:54.609Z" },
|
|
2956
2956
|
]
|
|
2957
2957
|
|
|
2958
2958
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/__init__.py
RENAMED
|
File without changes
|
{codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/file_utils.py
RENAMED
|
File without changes
|
{codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/models.py
RENAMED
|
File without changes
|
{codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/tools/__init__.py
RENAMED
|
File without changes
|
{codeocean_mcp_server-0.7.1 → codeocean_mcp_server-0.7.2}/src/codeocean_mcp_server/tools/capsules.py
RENAMED
|
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
|