nbcat 0.9.3__tar.gz → 0.9.5__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.
- {nbcat-0.9.3 → nbcat-0.9.5}/PKG-INFO +21 -11
- {nbcat-0.9.3 → nbcat-0.9.5}/README.md +19 -9
- {nbcat-0.9.3 → nbcat-0.9.5}/pyproject.toml +2 -3
- nbcat-0.9.5/src/nbcat/__init__.py +1 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/src/nbcat/enums.py +7 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/src/nbcat/main.py +25 -10
- {nbcat-0.9.3 → nbcat-0.9.5}/src/nbcat/schemas.py +32 -19
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/test_render_cell.py +5 -5
- {nbcat-0.9.3 → nbcat-0.9.5}/uv.lock +78 -24
- nbcat-0.9.3/src/nbcat/__init__.py +0 -1
- {nbcat-0.9.3 → nbcat-0.9.5}/.github/workflows/ci.yml +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/.gitignore +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/LICENSE +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/Makefile +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/src/nbcat/exceptions.py +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/src/nbcat/py.typed +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/invalid.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/many_tracebacks.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/no_min_version.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test3.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test3_no_metadata.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test3_no_min_version.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test3_no_worksheets.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test3_worksheet_with_no_cells.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test4.5.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test4.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test4custom.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test4docinfo.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test4jupyter_metadata.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/assets/test4jupyter_metadata_timings.ipynb +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/conftest.py +0 -0
- {nbcat-0.9.3 → nbcat-0.9.5}/tests/test_read_notebook.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: nbcat
|
3
|
-
Version: 0.9.
|
3
|
+
Version: 0.9.5
|
4
4
|
Summary: cat for jupyter notebooks
|
5
5
|
Project-URL: Homepage, https://github.com/akopdev/nbcat
|
6
6
|
Project-URL: Repository, https://github.com/akopdev/nbcat
|
@@ -28,7 +28,7 @@ License: MIT License
|
|
28
28
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
29
29
|
SOFTWARE.
|
30
30
|
License-File: LICENSE
|
31
|
-
Requires-Python: >=3.
|
31
|
+
Requires-Python: >=3.9
|
32
32
|
Requires-Dist: argcomplete
|
33
33
|
Requires-Dist: pydantic
|
34
34
|
Requires-Dist: requests
|
@@ -43,15 +43,25 @@ Description-Content-Type: text/markdown
|
|
43
43
|
|
44
44
|
# 📦 nbcat
|
45
45
|
|
46
|
-
`nbcat`
|
46
|
+
`nbcat` let you preview Jupyter notebooks directly in your terminal. Think of it as `cat`, but for `.ipynb` files.
|
47
47
|
|
48
|
-
##
|
48
|
+
## Features
|
49
49
|
|
50
|
-
-
|
50
|
+
- Very fast and lightweight with minimal dependencies
|
51
51
|
- Preview remote notebooks without downloading them
|
52
|
-
- Supports for all Jupyter notebook versions
|
52
|
+
- Supports for all Jupyter notebook versions, including old legacy formats
|
53
53
|
|
54
|
-
##
|
54
|
+
## Motivation
|
55
|
+
|
56
|
+
The idea of previewing notebooks in a terminal is not new - there have been many previous attempts to achieve it.
|
57
|
+
However, most are either slow and overengineered with a ton of half-working features, or they're outdated and incompatible with modern Python.
|
58
|
+
|
59
|
+
I was looking for a simple tool that let me quickly render Jupyter notebooks without switching context from my terminal window or installing a ton of dependencies.
|
60
|
+
|
61
|
+
Please note, that `nbcat` doesn't aim to replace JupyterLab. If you need a full-featured terminal experience, I recommend checking out [euporie](https://euporie.readthedocs.io/) instead.
|
62
|
+
|
63
|
+
|
64
|
+
## Installation
|
55
65
|
|
56
66
|
From the command line using pip:
|
57
67
|
|
@@ -59,7 +69,7 @@ From the command line using pip:
|
|
59
69
|
pip install nbcat
|
60
70
|
```
|
61
71
|
|
62
|
-
##
|
72
|
+
## Quickstart
|
63
73
|
|
64
74
|
```bash
|
65
75
|
$ nbcat notebook.ipynb
|
@@ -91,15 +101,15 @@ Check code quality:
|
|
91
101
|
make format lint
|
92
102
|
```
|
93
103
|
|
94
|
-
##
|
104
|
+
## Contributing
|
95
105
|
|
96
106
|
Contributions are welcome! Please open an issue or [pull request](https://github.com/akopdev/nbcat/pulls).
|
97
107
|
|
98
|
-
##
|
108
|
+
## License
|
99
109
|
|
100
110
|
Distributed under the MIT License. See [`LICENSE`](./LICENSE) for more information.
|
101
111
|
|
102
|
-
##
|
112
|
+
## Useful Links
|
103
113
|
|
104
114
|
- 📘 Documentation: _coming soon_
|
105
115
|
- 🐛 Issues: [GitHub Issues](https://github.com/akopdev/nbcat/issues)
|
@@ -1,14 +1,24 @@
|
|
1
1
|
# 📦 nbcat
|
2
2
|
|
3
|
-
`nbcat`
|
3
|
+
`nbcat` let you preview Jupyter notebooks directly in your terminal. Think of it as `cat`, but for `.ipynb` files.
|
4
4
|
|
5
|
-
##
|
5
|
+
## Features
|
6
6
|
|
7
|
-
-
|
7
|
+
- Very fast and lightweight with minimal dependencies
|
8
8
|
- Preview remote notebooks without downloading them
|
9
|
-
- Supports for all Jupyter notebook versions
|
9
|
+
- Supports for all Jupyter notebook versions, including old legacy formats
|
10
10
|
|
11
|
-
##
|
11
|
+
## Motivation
|
12
|
+
|
13
|
+
The idea of previewing notebooks in a terminal is not new - there have been many previous attempts to achieve it.
|
14
|
+
However, most are either slow and overengineered with a ton of half-working features, or they're outdated and incompatible with modern Python.
|
15
|
+
|
16
|
+
I was looking for a simple tool that let me quickly render Jupyter notebooks without switching context from my terminal window or installing a ton of dependencies.
|
17
|
+
|
18
|
+
Please note, that `nbcat` doesn't aim to replace JupyterLab. If you need a full-featured terminal experience, I recommend checking out [euporie](https://euporie.readthedocs.io/) instead.
|
19
|
+
|
20
|
+
|
21
|
+
## Installation
|
12
22
|
|
13
23
|
From the command line using pip:
|
14
24
|
|
@@ -16,7 +26,7 @@ From the command line using pip:
|
|
16
26
|
pip install nbcat
|
17
27
|
```
|
18
28
|
|
19
|
-
##
|
29
|
+
## Quickstart
|
20
30
|
|
21
31
|
```bash
|
22
32
|
$ nbcat notebook.ipynb
|
@@ -48,15 +58,15 @@ Check code quality:
|
|
48
58
|
make format lint
|
49
59
|
```
|
50
60
|
|
51
|
-
##
|
61
|
+
## Contributing
|
52
62
|
|
53
63
|
Contributions are welcome! Please open an issue or [pull request](https://github.com/akopdev/nbcat/pulls).
|
54
64
|
|
55
|
-
##
|
65
|
+
## License
|
56
66
|
|
57
67
|
Distributed under the MIT License. See [`LICENSE`](./LICENSE) for more information.
|
58
68
|
|
59
|
-
##
|
69
|
+
## Useful Links
|
60
70
|
|
61
71
|
- 📘 Documentation: _coming soon_
|
62
72
|
- 🐛 Issues: [GitHub Issues](https://github.com/akopdev/nbcat/issues)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "nbcat"
|
3
|
-
version = "0.9.
|
3
|
+
version = "0.9.5"
|
4
4
|
description = "cat for jupyter notebooks"
|
5
5
|
authors = [
|
6
6
|
{ name = "Akop Kesheshyan", email = "devnull@akop.dev" }
|
@@ -10,7 +10,7 @@ maintainers = [
|
|
10
10
|
]
|
11
11
|
license = {file = "LICENSE"}
|
12
12
|
readme = "README.md"
|
13
|
-
requires-python = ">=3.
|
13
|
+
requires-python = ">=3.9"
|
14
14
|
dependencies = [
|
15
15
|
"argcomplete",
|
16
16
|
"requests",
|
@@ -38,7 +38,6 @@ nbcat = "nbcat.main:main"
|
|
38
38
|
mock_use_standalone_module = true
|
39
39
|
|
40
40
|
[tool.pytest.ini_options]
|
41
|
-
asyncio_default_fixture_loop_scope = "function"
|
42
41
|
testpaths = "tests/"
|
43
42
|
|
44
43
|
[tool.ruff]
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.9.5"
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import argparse
|
2
2
|
import sys
|
3
3
|
from pathlib import Path
|
4
|
+
from typing import Union
|
4
5
|
|
5
6
|
import argcomplete
|
6
7
|
import requests
|
@@ -10,12 +11,13 @@ from rich import box
|
|
10
11
|
from rich.console import Console, RenderableType
|
11
12
|
from rich.markdown import Markdown
|
12
13
|
from rich.panel import Panel
|
14
|
+
from rich.pretty import Pretty
|
13
15
|
from rich.syntax import Syntax
|
14
16
|
from rich.table import Table
|
15
17
|
from rich.text import Text
|
16
18
|
|
17
19
|
from . import __version__
|
18
|
-
from .enums import CellType
|
20
|
+
from .enums import CellType, OutputCellType
|
19
21
|
from .exceptions import (
|
20
22
|
InvalidNotebookFormatError,
|
21
23
|
NotebookNotFoundError,
|
@@ -66,7 +68,7 @@ def read_notebook(fp: str, debug: bool = False) -> Notebook:
|
|
66
68
|
raise InvalidNotebookFormatError(f"Invalid notebook: {e}")
|
67
69
|
|
68
70
|
|
69
|
-
def render_cell(cell: Cell) -> list[tuple[str
|
71
|
+
def render_cell(cell: Cell) -> list[tuple[Union[str, None], RenderableType]]:
|
70
72
|
"""
|
71
73
|
Render the content of a notebook cell for display.
|
72
74
|
|
@@ -91,18 +93,28 @@ def render_cell(cell: Cell) -> list[tuple[str | None, RenderableType]]:
|
|
91
93
|
def _render_raw(input: str) -> Text:
|
92
94
|
return Text(input)
|
93
95
|
|
96
|
+
def _render_image(input: str) -> None:
|
97
|
+
return None
|
98
|
+
|
99
|
+
def _render_json(input: str) -> Pretty:
|
100
|
+
return Pretty(input)
|
101
|
+
|
94
102
|
RENDERERS = {
|
95
103
|
CellType.MARKDOWN: _render_markdown,
|
96
104
|
CellType.CODE: _render_code,
|
97
105
|
CellType.RAW: _render_raw,
|
98
106
|
CellType.HEADING: _render_markdown,
|
107
|
+
OutputCellType.PLAIN: _render_raw,
|
108
|
+
OutputCellType.HTML: _render_markdown,
|
109
|
+
OutputCellType.IMAGE: _render_image,
|
110
|
+
OutputCellType.JSON: _render_json,
|
99
111
|
}
|
100
112
|
|
101
|
-
rows: list[tuple[str
|
113
|
+
rows: list[tuple[Union[str, None], RenderableType]] = []
|
102
114
|
renderer = RENDERERS.get(cell.cell_type)
|
103
115
|
source = renderer(cell.input) if renderer else None
|
104
116
|
if source:
|
105
|
-
label = f"[green][{cell.execution_count}][/]
|
117
|
+
label = f"[green][{cell.execution_count}][/]" if cell.execution_count else None
|
106
118
|
rows.append(
|
107
119
|
(
|
108
120
|
label,
|
@@ -112,13 +124,16 @@ def render_cell(cell: Cell) -> list[tuple[str | None, RenderableType]]:
|
|
112
124
|
|
113
125
|
for o in cell.outputs:
|
114
126
|
if o.output:
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
127
|
+
renderer = RENDERERS.get(o.output.output_type)
|
128
|
+
output = renderer(o.output.text) if renderer else None
|
129
|
+
if output:
|
130
|
+
label = f"[blue][{o.execution_count}][/]" if o.execution_count else None
|
131
|
+
rows.append(
|
132
|
+
(
|
133
|
+
label,
|
134
|
+
output,
|
135
|
+
)
|
120
136
|
)
|
121
|
-
)
|
122
137
|
return rows
|
123
138
|
|
124
139
|
|
@@ -1,25 +1,29 @@
|
|
1
|
-
from typing import Any
|
1
|
+
from typing import Any, Union
|
2
2
|
|
3
3
|
from pydantic import BaseModel, computed_field, model_validator
|
4
4
|
|
5
|
-
from .enums import CellType, OutputType
|
5
|
+
from .enums import CellType, OutputCellType, OutputType
|
6
6
|
from .exceptions import InvalidNotebookFormatError
|
7
7
|
|
8
8
|
|
9
9
|
class BaseOutput(BaseModel):
|
10
10
|
output_type: OutputType
|
11
|
-
execution_count: int
|
11
|
+
execution_count: Union[int, None] = None
|
12
|
+
|
13
|
+
|
14
|
+
class CellOutput(BaseModel):
|
15
|
+
output_type: OutputCellType
|
16
|
+
text: str
|
12
17
|
|
13
18
|
|
14
19
|
class StreamOutput(BaseOutput):
|
15
|
-
text: list[str]
|
20
|
+
text: Union[list[str], str]
|
16
21
|
|
17
22
|
@computed_field
|
18
23
|
@property
|
19
|
-
def output(self) ->
|
20
|
-
if isinstance(self.text, list)
|
21
|
-
|
22
|
-
return self.text
|
24
|
+
def output(self) -> CellOutput:
|
25
|
+
text = "".join(self.text) if isinstance(self.text, list) else self.text
|
26
|
+
return CellOutput(output_type=OutputCellType.PLAIN, text=text)
|
23
27
|
|
24
28
|
|
25
29
|
class DisplayDataOutput(BaseOutput):
|
@@ -27,9 +31,18 @@ class DisplayDataOutput(BaseOutput):
|
|
27
31
|
|
28
32
|
@computed_field
|
29
33
|
@property
|
30
|
-
def output(self) ->
|
31
|
-
|
32
|
-
|
34
|
+
def output(self) -> Union[CellOutput, None]:
|
35
|
+
data_type_map = {
|
36
|
+
"text/html": OutputCellType.HTML,
|
37
|
+
"text/png": OutputCellType.IMAGE,
|
38
|
+
"text/plain": OutputCellType.PLAIN,
|
39
|
+
"application/vnd.raw.v1+json": OutputCellType.JSON,
|
40
|
+
}
|
41
|
+
for data_type, output_type in data_type_map.items():
|
42
|
+
data = self.data.get(data_type)
|
43
|
+
if data:
|
44
|
+
text = "".join(data) if isinstance(data, list) else str(data)
|
45
|
+
return CellOutput(output_type=output_type, text=text)
|
33
46
|
|
34
47
|
|
35
48
|
class ErrorOutput(BaseOutput):
|
@@ -39,8 +52,8 @@ class ErrorOutput(BaseOutput):
|
|
39
52
|
|
40
53
|
@computed_field
|
41
54
|
@property
|
42
|
-
def output(self) ->
|
43
|
-
return "\n".join(self.traceback)
|
55
|
+
def output(self) -> CellOutput:
|
56
|
+
return CellOutput(output_type=OutputCellType.PLAIN, text="\n".join(self.traceback))
|
44
57
|
|
45
58
|
|
46
59
|
class PyoutDataOutput(BaseOutput):
|
@@ -48,16 +61,16 @@ class PyoutDataOutput(BaseOutput):
|
|
48
61
|
|
49
62
|
@computed_field
|
50
63
|
@property
|
51
|
-
def output(self) ->
|
52
|
-
return "\n".join(self.text)
|
64
|
+
def output(self) -> CellOutput:
|
65
|
+
return CellOutput(output_type=OutputCellType.PLAIN, text="\n".join(self.text))
|
53
66
|
|
54
67
|
|
55
68
|
class Cell(BaseModel):
|
56
69
|
cell_type: CellType
|
57
|
-
source: list[str]
|
58
|
-
level: int
|
59
|
-
execution_count: int
|
60
|
-
outputs: list[StreamOutput
|
70
|
+
source: Union[list[str], str]
|
71
|
+
level: Union[int, None] = None
|
72
|
+
execution_count: Union[int, None] = None
|
73
|
+
outputs: list[Union[StreamOutput, DisplayDataOutput, ErrorOutput, PyoutDataOutput]] = []
|
61
74
|
|
62
75
|
@model_validator(mode="before")
|
63
76
|
@classmethod
|
@@ -22,7 +22,7 @@ def test_render_cell_input_rendering(cell_type: str, source: str, expected):
|
|
22
22
|
|
23
23
|
assert len(rendered) == 1
|
24
24
|
label, content = rendered[0]
|
25
|
-
assert label == "[green][42][/]
|
25
|
+
assert label == "[green][42][/]"
|
26
26
|
assert isinstance(content, expected)
|
27
27
|
|
28
28
|
|
@@ -44,11 +44,11 @@ def test_render_cell_with_outputs():
|
|
44
44
|
assert rendered[0][0] is None
|
45
45
|
assert isinstance(rendered[0][1], Panel)
|
46
46
|
|
47
|
-
assert rendered[1][0] == "[blue][7][/]
|
48
|
-
assert isinstance(rendered[1][1],
|
47
|
+
assert rendered[1][0] == "[blue][7][/]"
|
48
|
+
assert isinstance(rendered[1][1], Text)
|
49
49
|
|
50
50
|
assert rendered[2][0] is None
|
51
|
-
assert isinstance(rendered[2][1],
|
51
|
+
assert isinstance(rendered[2][1], Text)
|
52
52
|
|
53
53
|
|
54
54
|
def test_render_cell_skips_empty_outputs():
|
@@ -63,5 +63,5 @@ def test_render_cell_skips_empty_outputs():
|
|
63
63
|
rendered = render_cell(cell)
|
64
64
|
|
65
65
|
assert len(rendered) == 1 # Only source input is rendered
|
66
|
-
assert rendered[0][0] == "[green][1][/]
|
66
|
+
assert rendered[0][0] == "[green][1][/]"
|
67
67
|
assert isinstance(rendered[0][1], Text)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
version = 1
|
2
2
|
revision = 1
|
3
|
-
requires-python = ">=3.
|
3
|
+
requires-python = ">=3.9"
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "annotated-types"
|
@@ -22,11 +22,11 @@ wheels = [
|
|
22
22
|
|
23
23
|
[[package]]
|
24
24
|
name = "certifi"
|
25
|
-
version = "2025.
|
25
|
+
version = "2025.4.26"
|
26
26
|
source = { registry = "https://pypi.org/simple" }
|
27
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
27
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e8/9e/c05b3920a3b7d20d3d3310465f50348e5b3694f4f88c6daf736eef3024c4/certifi-2025.4.26.tar.gz", hash = "sha256:0a816057ea3cdefcef70270d2c515e4506bbc954f417fa5ade2021213bb8f0c6", size = 160705 }
|
28
28
|
wheels = [
|
29
|
-
{ url = "https://files.pythonhosted.org/packages/
|
29
|
+
{ url = "https://files.pythonhosted.org/packages/4a/7e/3db2bd1b1f9e95f7cddca6d6e75e2f2bd9f51b1246e546d88addca0106bd/certifi-2025.4.26-py3-none-any.whl", hash = "sha256:30350364dfe371162649852c63336a15c70c6510c2ad5015b21c2345311805f3", size = 159618 },
|
30
30
|
]
|
31
31
|
|
32
32
|
[[package]]
|
@@ -87,6 +87,19 @@ wheels = [
|
|
87
87
|
{ url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732 },
|
88
88
|
{ url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391 },
|
89
89
|
{ url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702 },
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/7f/c0/b913f8f02836ed9ab32ea643c6fe4d3325c3d8627cf6e78098671cafff86/charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41", size = 197867 },
|
91
|
+
{ url = "https://files.pythonhosted.org/packages/0f/6c/2bee440303d705b6fb1e2ec789543edec83d32d258299b16eed28aad48e0/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f", size = 141385 },
|
92
|
+
{ url = "https://files.pythonhosted.org/packages/3d/04/cb42585f07f6f9fd3219ffb6f37d5a39b4fd2db2355b23683060029c35f7/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2", size = 151367 },
|
93
|
+
{ url = "https://files.pythonhosted.org/packages/54/54/2412a5b093acb17f0222de007cc129ec0e0df198b5ad2ce5699355269dfe/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770", size = 143928 },
|
94
|
+
{ url = "https://files.pythonhosted.org/packages/5a/6d/e2773862b043dcf8a221342954f375392bb2ce6487bcd9f2c1b34e1d6781/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4", size = 146203 },
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/b9/f8/ca440ef60d8f8916022859885f231abb07ada3c347c03d63f283bec32ef5/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537", size = 148082 },
|
96
|
+
{ url = "https://files.pythonhosted.org/packages/04/d2/42fd330901aaa4b805a1097856c2edf5095e260a597f65def493f4b8c833/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496", size = 142053 },
|
97
|
+
{ url = "https://files.pythonhosted.org/packages/9e/af/3a97a4fa3c53586f1910dadfc916e9c4f35eeada36de4108f5096cb7215f/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78", size = 150625 },
|
98
|
+
{ url = "https://files.pythonhosted.org/packages/26/ae/23d6041322a3556e4da139663d02fb1b3c59a23ab2e2b56432bd2ad63ded/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7", size = 153549 },
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/94/22/b8f2081c6a77cb20d97e57e0b385b481887aa08019d2459dc2858ed64871/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6", size = 150945 },
|
100
|
+
{ url = "https://files.pythonhosted.org/packages/c7/0b/c5ec5092747f801b8b093cdf5610e732b809d6cb11f4c51e35fc28d1d389/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294", size = 146595 },
|
101
|
+
{ url = "https://files.pythonhosted.org/packages/0c/5a/0b59704c38470df6768aa154cc87b1ac7c9bb687990a1559dc8765e8627e/charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5", size = 95453 },
|
102
|
+
{ url = "https://files.pythonhosted.org/packages/85/2d/a9790237cb4d01a6d57afadc8573c8b73c609ade20b80f4cda30802009ee/charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765", size = 102811 },
|
90
103
|
{ url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 },
|
91
104
|
]
|
92
105
|
|
@@ -155,6 +168,16 @@ wheels = [
|
|
155
168
|
{ url = "https://files.pythonhosted.org/packages/58/e9/8fb8e0ff6bef5e170ee19d59ca694f9001b2ec085dc99b4f65c128bb3f9a/coverage-7.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f3c38e4e5ccbdc9198aecc766cedbb134b2d89bf64533973678dfcf07effd883", size = 255116 },
|
156
169
|
{ url = "https://files.pythonhosted.org/packages/56/b0/d968ecdbe6fe0a863de7169bbe9e8a476868959f3af24981f6a10d2b6924/coverage-7.8.0-cp313-cp313t-win32.whl", hash = "sha256:379fe315e206b14e21db5240f89dc0774bdd3e25c3c58c2c733c99eca96f1ada", size = 214909 },
|
157
170
|
{ url = "https://files.pythonhosted.org/packages/87/e9/d6b7ef9fecf42dfb418d93544af47c940aa83056c49e6021a564aafbc91f/coverage-7.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2e4b6b87bb0c846a9315e3ab4be2d52fac905100565f4b92f02c445c8799e257", size = 216068 },
|
171
|
+
{ url = "https://files.pythonhosted.org/packages/60/0c/5da94be095239814bf2730a28cffbc48d6df4304e044f80d39e1ae581997/coverage-7.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa260de59dfb143af06dcf30c2be0b200bed2a73737a8a59248fcb9fa601ef0f", size = 211377 },
|
172
|
+
{ url = "https://files.pythonhosted.org/packages/d5/cb/b9e93ebf193a0bb89dbcd4f73d7b0e6ecb7c1b6c016671950e25f041835e/coverage-7.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:96121edfa4c2dfdda409877ea8608dd01de816a4dc4a0523356067b305e4e17a", size = 211803 },
|
173
|
+
{ url = "https://files.pythonhosted.org/packages/78/1a/cdbfe9e1bb14d3afcaf6bb6e1b9ba76c72666e329cd06865bbd241efd652/coverage-7.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b8af63b9afa1031c0ef05b217faa598f3069148eeee6bb24b79da9012423b82", size = 240561 },
|
174
|
+
{ url = "https://files.pythonhosted.org/packages/59/04/57f1223f26ac018d7ce791bfa65b0c29282de3e041c1cd3ed430cfeac5a5/coverage-7.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89b1f4af0d4afe495cd4787a68e00f30f1d15939f550e869de90a86efa7e0814", size = 238488 },
|
175
|
+
{ url = "https://files.pythonhosted.org/packages/b7/b1/0f25516ae2a35e265868670384feebe64e7857d9cffeeb3887b0197e2ba2/coverage-7.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94ec0be97723ae72d63d3aa41961a0b9a6f5a53ff599813c324548d18e3b9e8c", size = 239589 },
|
176
|
+
{ url = "https://files.pythonhosted.org/packages/e0/a4/99d88baac0d1d5a46ceef2dd687aac08fffa8795e4c3e71b6f6c78e14482/coverage-7.8.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8a1d96e780bdb2d0cbb297325711701f7c0b6f89199a57f2049e90064c29f6bd", size = 239366 },
|
177
|
+
{ url = "https://files.pythonhosted.org/packages/ea/9e/1db89e135feb827a868ed15f8fc857160757f9cab140ffee21342c783ceb/coverage-7.8.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f1d8a2a57b47142b10374902777e798784abf400a004b14f1b0b9eaf1e528ba4", size = 237591 },
|
178
|
+
{ url = "https://files.pythonhosted.org/packages/1b/6d/ac4d6fdfd0e201bc82d1b08adfacb1e34b40d21a22cdd62cfaf3c1828566/coverage-7.8.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cf60dd2696b457b710dd40bf17ad269d5f5457b96442f7f85722bdb16fa6c899", size = 238572 },
|
179
|
+
{ url = "https://files.pythonhosted.org/packages/25/5e/917cbe617c230f7f1745b6a13e780a3a1cd1cf328dbcd0fd8d7ec52858cd/coverage-7.8.0-cp39-cp39-win32.whl", hash = "sha256:be945402e03de47ba1872cd5236395e0f4ad635526185a930735f66710e1bd3f", size = 213966 },
|
180
|
+
{ url = "https://files.pythonhosted.org/packages/bd/93/72b434fe550135869f9ea88dd36068af19afce666db576e059e75177e813/coverage-7.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:90e7fbc6216ecaffa5a880cdc9c77b7418c1dcb166166b78dbc630d07f278cc3", size = 214852 },
|
158
181
|
{ url = "https://files.pythonhosted.org/packages/c4/f1/1da77bb4c920aa30e82fa9b6ea065da3467977c2e5e032e38e66f1c57ffd/coverage-7.8.0-pp39.pp310.pp311-none-any.whl", hash = "sha256:b8194fb8e50d556d5849753de991d390c5a1edeeba50f68e3a9253fbd8bf8ccd", size = 203443 },
|
159
182
|
{ url = "https://files.pythonhosted.org/packages/59/f1/4da7717f0063a222db253e7121bd6a56f6fb1ba439dcc36659088793347c/coverage-7.8.0-py3-none-any.whl", hash = "sha256:dbf364b4c5e7bae9250528167dfe40219b62e2d573c854d74be213e1e52069f7", size = 203435 },
|
160
183
|
]
|
@@ -214,7 +237,7 @@ wheels = [
|
|
214
237
|
|
215
238
|
[[package]]
|
216
239
|
name = "nbcat"
|
217
|
-
version = "0.9.
|
240
|
+
version = "0.9.5"
|
218
241
|
source = { editable = "." }
|
219
242
|
dependencies = [
|
220
243
|
{ name = "argcomplete" },
|
@@ -346,6 +369,19 @@ wheels = [
|
|
346
369
|
{ url = "https://files.pythonhosted.org/packages/ef/fd/24ea4302d7a527d672c5be06e17df16aabfb4e9fdc6e0b345c21580f3d2a/pydantic_core-2.33.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:401d7b76e1000d0dd5538e6381d28febdcacb097c8d340dde7d7fc6e13e9f95d", size = 1812963 },
|
347
370
|
{ url = "https://files.pythonhosted.org/packages/5f/95/4fbc2ecdeb5c1c53f1175a32d870250194eb2fdf6291b795ab08c8646d5d/pydantic_core-2.33.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7aeb055a42d734c0255c9e489ac67e75397d59c6fbe60d155851e9782f276a9c", size = 1986896 },
|
348
371
|
{ url = "https://files.pythonhosted.org/packages/71/ae/fe31e7f4a62431222d8f65a3bd02e3fa7e6026d154a00818e6d30520ea77/pydantic_core-2.33.1-cp313-cp313t-win_amd64.whl", hash = "sha256:338ea9b73e6e109f15ab439e62cb3b78aa752c7fd9536794112e14bee02c8d18", size = 1931810 },
|
372
|
+
{ url = "https://files.pythonhosted.org/packages/49/78/b86bad645cc3e8dfa6858c70ec38939bf350e54004837c48de09474b2b9e/pydantic_core-2.33.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5ab77f45d33d264de66e1884fca158bc920cb5e27fd0764a72f72f5756ae8bdb", size = 2044282 },
|
373
|
+
{ url = "https://files.pythonhosted.org/packages/3b/00/a02531331773b2bf08743d84c6b776bd6a449d23b3ae6b0e3229d568bac4/pydantic_core-2.33.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e7aaba1b4b03aaea7bb59e1b5856d734be011d3e6d98f5bcaa98cb30f375f2ad", size = 1877598 },
|
374
|
+
{ url = "https://files.pythonhosted.org/packages/a1/fa/32cc152b84a1f420f8a7d80161373e8d87d4ffa077e67d6c8aab3ce1a6ab/pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fb66263e9ba8fea2aa85e1e5578980d127fb37d7f2e292773e7bc3a38fb0c7b", size = 1911021 },
|
375
|
+
{ url = "https://files.pythonhosted.org/packages/5e/87/ea553e0d98bce6c4876f8c50f65cb45597eff6e0aaa8b15813e9972bb19d/pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3f2648b9262607a7fb41d782cc263b48032ff7a03a835581abbf7a3bec62bcf5", size = 1997276 },
|
376
|
+
{ url = "https://files.pythonhosted.org/packages/f7/9b/60cb9f4b52158b3adac0066492bbadd0b8473f4f8da5bcc73972655b76ef/pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:723c5630c4259400818b4ad096735a829074601805d07f8cafc366d95786d331", size = 2141348 },
|
377
|
+
{ url = "https://files.pythonhosted.org/packages/9b/38/374d254e270d4de0add68a8239f4ed0f444fdd7b766ea69244fb9491dccb/pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d100e3ae783d2167782391e0c1c7a20a31f55f8015f3293647544df3f9c67824", size = 2753708 },
|
378
|
+
{ url = "https://files.pythonhosted.org/packages/05/a8/fd79111eb5ab9bc4ef98d8fb0b3a2ffdc80107b2c59859a741ab379c96f8/pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177d50460bc976a0369920b6c744d927b0ecb8606fb56858ff542560251b19e5", size = 2008699 },
|
379
|
+
{ url = "https://files.pythonhosted.org/packages/35/31/2e06619868eb4c18642c5601db420599c1cf9cf50fe868c9ac09cd298e24/pydantic_core-2.33.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a3edde68d1a1f9af1273b2fe798997b33f90308fb6d44d8550c89fc6a3647cf6", size = 2123426 },
|
380
|
+
{ url = "https://files.pythonhosted.org/packages/4a/d0/3531e8783a311802e3db7ee5a1a5ed79e5706e930b1b4e3109ce15eeb681/pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a62c3c3ef6a7e2c45f7853b10b5bc4ddefd6ee3cd31024754a1a5842da7d598d", size = 2087330 },
|
381
|
+
{ url = "https://files.pythonhosted.org/packages/ac/32/5ff252ed73bacd7677a706ab17723e261a76793f98b305aa20cfc10bbd56/pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:c91dbb0ab683fa0cd64a6e81907c8ff41d6497c346890e26b23de7ee55353f96", size = 2258171 },
|
382
|
+
{ url = "https://files.pythonhosted.org/packages/c9/f9/e96e00f92b8f5b3e2cddc80c5ee6cf038f8a0f238c44b67b01759943a7b4/pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9f466e8bf0a62dc43e068c12166281c2eca72121dd2adc1040f3aa1e21ef8599", size = 2258745 },
|
383
|
+
{ url = "https://files.pythonhosted.org/packages/54/1e/51c86688e809d94797fdf0efc41514f001caec982a05f62d90c180a9639d/pydantic_core-2.33.1-cp39-cp39-win32.whl", hash = "sha256:ab0277cedb698749caada82e5d099dc9fed3f906a30d4c382d1a21725777a1e5", size = 1923626 },
|
384
|
+
{ url = "https://files.pythonhosted.org/packages/57/18/c2da959fd8d019b70cadafdda2bf845378ada47973e0bad6cc84f56dbe6e/pydantic_core-2.33.1-cp39-cp39-win_amd64.whl", hash = "sha256:5773da0ee2d17136b1f1c6fbde543398d452a6ad2a7b54ea1033e2daa739b8d2", size = 1953703 },
|
349
385
|
{ url = "https://files.pythonhosted.org/packages/9c/c7/8b311d5adb0fe00a93ee9b4e92a02b0ec08510e9838885ef781ccbb20604/pydantic_core-2.33.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5c834f54f8f4640fd7e4b193f80eb25a0602bba9e19b3cd2fc7ffe8199f5ae02", size = 2041659 },
|
350
386
|
{ url = "https://files.pythonhosted.org/packages/8a/d6/4f58d32066a9e26530daaf9adc6664b01875ae0691570094968aaa7b8fcc/pydantic_core-2.33.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:049e0de24cf23766f12cc5cc71d8abc07d4a9deb9061b334b62093dedc7cb068", size = 1873294 },
|
351
387
|
{ url = "https://files.pythonhosted.org/packages/f7/3f/53cc9c45d9229da427909c751f8ed2bf422414f7664ea4dde2d004f596ba/pydantic_core-2.33.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a28239037b3d6f16916a4c831a5a0eadf856bdd6d2e92c10a0da3a59eadcf3e", size = 1903771 },
|
@@ -364,6 +400,15 @@ wheels = [
|
|
364
400
|
{ url = "https://files.pythonhosted.org/packages/0b/cd/c59707e35a47ba4cbbf153c3f7c56420c58653b5801b055dc52cccc8e2dc/pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:52928d8c1b6bda03cc6d811e8923dffc87a2d3c8b3bfd2ce16471c7147a24850", size = 2250175 },
|
365
401
|
{ url = "https://files.pythonhosted.org/packages/84/32/e4325a6676b0bed32d5b084566ec86ed7fd1e9bcbfc49c578b1755bde920/pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:1b30d92c9412beb5ac6b10a3eb7ef92ccb14e3f2a8d7732e2d739f58b3aa7544", size = 2254674 },
|
366
402
|
{ url = "https://files.pythonhosted.org/packages/12/6f/5596dc418f2e292ffc661d21931ab34591952e2843e7168ea5a52591f6ff/pydantic_core-2.33.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:f995719707e0e29f0f41a8aa3bcea6e761a36c9136104d3189eafb83f5cec5e5", size = 2080951 },
|
403
|
+
{ url = "https://files.pythonhosted.org/packages/2d/a8/c2c8f29bd18f7ef52de32a6deb9e3ee87ba18b7b2122636aa9f4438cf627/pydantic_core-2.33.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7edbc454a29fc6aeae1e1eecba4f07b63b8d76e76a748532233c4c167b4cb9ea", size = 2041791 },
|
404
|
+
{ url = "https://files.pythonhosted.org/packages/08/ad/328081b1c82543ae49d0650048305058583c51f1a9a56a0d6e87bb3a2443/pydantic_core-2.33.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ad05b683963f69a1d5d2c2bdab1274a31221ca737dbbceaa32bcb67359453cdd", size = 1873579 },
|
405
|
+
{ url = "https://files.pythonhosted.org/packages/6e/8a/bc65dbf7e501e88367cdab06a2c1340457c785f0c72288cae737fd80c0fa/pydantic_core-2.33.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df6a94bf9452c6da9b5d76ed229a5683d0306ccb91cca8e1eea883189780d568", size = 1904189 },
|
406
|
+
{ url = "https://files.pythonhosted.org/packages/9a/db/30ca6aefda211fb01ef185ca73cb7a0c6e7fe952c524025c8782b5acd771/pydantic_core-2.33.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7965c13b3967909a09ecc91f21d09cfc4576bf78140b988904e94f130f188396", size = 2084446 },
|
407
|
+
{ url = "https://files.pythonhosted.org/packages/f2/89/a12b55286e30c9f476eab7c53c9249ec76faf70430596496ab0309f28629/pydantic_core-2.33.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3f1fdb790440a34f6ecf7679e1863b825cb5ffde858a9197f851168ed08371e5", size = 2118215 },
|
408
|
+
{ url = "https://files.pythonhosted.org/packages/8e/55/12721c4a8d7951584ad3d9848b44442559cf1876e0bb424148d1060636b3/pydantic_core-2.33.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:5277aec8d879f8d05168fdd17ae811dd313b8ff894aeeaf7cd34ad28b4d77e33", size = 2079963 },
|
409
|
+
{ url = "https://files.pythonhosted.org/packages/bd/0c/3391bd5d6ff62ea998db94732528d9bc32c560b0ed861c39119759461946/pydantic_core-2.33.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:8ab581d3530611897d863d1a649fb0644b860286b4718db919bfd51ece41f10b", size = 2249388 },
|
410
|
+
{ url = "https://files.pythonhosted.org/packages/d3/5f/3e4feb042998d7886a9b523b372d83955cbc192a07013dcd24276db078ee/pydantic_core-2.33.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:0483847fa9ad5e3412265c1bd72aad35235512d9ce9d27d81a56d935ef489672", size = 2255226 },
|
411
|
+
{ url = "https://files.pythonhosted.org/packages/25/f2/1647933efaaad61846109a27619f3704929e758a09e6431b8f932a053d40/pydantic_core-2.33.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:de9e06abe3cc5ec6a2d5f75bc99b0bdca4f5c719a5b34026f8c57efbdecd2ee3", size = 2081073 },
|
367
412
|
]
|
368
413
|
|
369
414
|
[[package]]
|
@@ -471,6 +516,15 @@ wheels = [
|
|
471
516
|
{ url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 },
|
472
517
|
{ url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 },
|
473
518
|
{ url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 },
|
519
|
+
{ url = "https://files.pythonhosted.org/packages/65/d8/b7a1db13636d7fb7d4ff431593c510c8b8fca920ade06ca8ef20015493c5/PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", size = 184777 },
|
520
|
+
{ url = "https://files.pythonhosted.org/packages/0a/02/6ec546cd45143fdf9840b2c6be8d875116a64076218b61d68e12548e5839/PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", size = 172318 },
|
521
|
+
{ url = "https://files.pythonhosted.org/packages/0e/9a/8cc68be846c972bda34f6c2a93abb644fb2476f4dcc924d52175786932c9/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", size = 720891 },
|
522
|
+
{ url = "https://files.pythonhosted.org/packages/e9/6c/6e1b7f40181bc4805e2e07f4abc10a88ce4648e7e95ff1abe4ae4014a9b2/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", size = 722614 },
|
523
|
+
{ url = "https://files.pythonhosted.org/packages/3d/32/e7bd8535d22ea2874cef6a81021ba019474ace0d13a4819c2a4bce79bd6a/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", size = 737360 },
|
524
|
+
{ url = "https://files.pythonhosted.org/packages/d7/12/7322c1e30b9be969670b672573d45479edef72c9a0deac3bb2868f5d7469/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", size = 699006 },
|
525
|
+
{ url = "https://files.pythonhosted.org/packages/82/72/04fcad41ca56491995076630c3ec1e834be241664c0c09a64c9a2589b507/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", size = 723577 },
|
526
|
+
{ url = "https://files.pythonhosted.org/packages/ed/5e/46168b1f2757f1fcd442bc3029cd8767d88a98c9c05770d8b420948743bb/PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", size = 144593 },
|
527
|
+
{ url = "https://files.pythonhosted.org/packages/19/87/5124b1c1f2412bb95c59ec481eaf936cd32f0fe2a7b16b97b81c4c017a6a/PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", size = 162312 },
|
474
528
|
]
|
475
529
|
|
476
530
|
[[package]]
|
@@ -518,27 +572,27 @@ wheels = [
|
|
518
572
|
|
519
573
|
[[package]]
|
520
574
|
name = "ruff"
|
521
|
-
version = "0.11.
|
575
|
+
version = "0.11.7"
|
522
576
|
source = { registry = "https://pypi.org/simple" }
|
523
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
577
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5b/89/6f9c9674818ac2e9cc2f2b35b704b7768656e6b7c139064fc7ba8fbc99f1/ruff-0.11.7.tar.gz", hash = "sha256:655089ad3224070736dc32844fde783454f8558e71f501cb207485fe4eee23d4", size = 4054861 }
|
524
578
|
wheels = [
|
525
|
-
{ url = "https://files.pythonhosted.org/packages/
|
526
|
-
{ url = "https://files.pythonhosted.org/packages/
|
527
|
-
{ url = "https://files.pythonhosted.org/packages/
|
528
|
-
{ url = "https://files.pythonhosted.org/packages/
|
529
|
-
{ url = "https://files.pythonhosted.org/packages/
|
530
|
-
{ url = "https://files.pythonhosted.org/packages/
|
531
|
-
{ url = "https://files.pythonhosted.org/packages/
|
532
|
-
{ url = "https://files.pythonhosted.org/packages/
|
533
|
-
{ url = "https://files.pythonhosted.org/packages/
|
534
|
-
{ url = "https://files.pythonhosted.org/packages/
|
535
|
-
{ url = "https://files.pythonhosted.org/packages/
|
536
|
-
{ url = "https://files.pythonhosted.org/packages/
|
537
|
-
{ url = "https://files.pythonhosted.org/packages/
|
538
|
-
{ url = "https://files.pythonhosted.org/packages/
|
539
|
-
{ url = "https://files.pythonhosted.org/packages/
|
540
|
-
{ url = "https://files.pythonhosted.org/packages/
|
541
|
-
{ url = "https://files.pythonhosted.org/packages/
|
579
|
+
{ url = "https://files.pythonhosted.org/packages/b4/ec/21927cb906c5614b786d1621dba405e3d44f6e473872e6df5d1a6bca0455/ruff-0.11.7-py3-none-linux_armv6l.whl", hash = "sha256:d29e909d9a8d02f928d72ab7837b5cbc450a5bdf578ab9ebee3263d0a525091c", size = 10245403 },
|
580
|
+
{ url = "https://files.pythonhosted.org/packages/e2/af/fec85b6c2c725bcb062a354dd7cbc1eed53c33ff3aa665165871c9c16ddf/ruff-0.11.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:dd1fb86b168ae349fb01dd497d83537b2c5541fe0626e70c786427dd8363aaee", size = 11007166 },
|
581
|
+
{ url = "https://files.pythonhosted.org/packages/31/9a/2d0d260a58e81f388800343a45898fd8df73c608b8261c370058b675319a/ruff-0.11.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d3d7d2e140a6fbbc09033bce65bd7ea29d6a0adeb90b8430262fbacd58c38ada", size = 10378076 },
|
582
|
+
{ url = "https://files.pythonhosted.org/packages/c2/c4/9b09b45051404d2e7dd6d9dbcbabaa5ab0093f9febcae664876a77b9ad53/ruff-0.11.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4809df77de390a1c2077d9b7945d82f44b95d19ceccf0c287c56e4dc9b91ca64", size = 10557138 },
|
583
|
+
{ url = "https://files.pythonhosted.org/packages/5e/5e/f62a1b6669870a591ed7db771c332fabb30f83c967f376b05e7c91bccd14/ruff-0.11.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f3a0c2e169e6b545f8e2dba185eabbd9db4f08880032e75aa0e285a6d3f48201", size = 10095726 },
|
584
|
+
{ url = "https://files.pythonhosted.org/packages/45/59/a7aa8e716f4cbe07c3500a391e58c52caf665bb242bf8be42c62adef649c/ruff-0.11.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49b888200a320dd96a68e86736cf531d6afba03e4f6cf098401406a257fcf3d6", size = 11672265 },
|
585
|
+
{ url = "https://files.pythonhosted.org/packages/dd/e3/101a8b707481f37aca5f0fcc3e42932fa38b51add87bfbd8e41ab14adb24/ruff-0.11.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:2b19cdb9cf7dae00d5ee2e7c013540cdc3b31c4f281f1dacb5a799d610e90db4", size = 12331418 },
|
586
|
+
{ url = "https://files.pythonhosted.org/packages/dd/71/037f76cbe712f5cbc7b852e4916cd3cf32301a30351818d32ab71580d1c0/ruff-0.11.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64e0ee994c9e326b43539d133a36a455dbaab477bc84fe7bfbd528abe2f05c1e", size = 11794506 },
|
587
|
+
{ url = "https://files.pythonhosted.org/packages/ca/de/e450b6bab1fc60ef263ef8fcda077fb4977601184877dce1c59109356084/ruff-0.11.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bad82052311479a5865f52c76ecee5d468a58ba44fb23ee15079f17dd4c8fd63", size = 13939084 },
|
588
|
+
{ url = "https://files.pythonhosted.org/packages/0e/2c/1e364cc92970075d7d04c69c928430b23e43a433f044474f57e425cbed37/ruff-0.11.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7940665e74e7b65d427b82bffc1e46710ec7f30d58b4b2d5016e3f0321436502", size = 11450441 },
|
589
|
+
{ url = "https://files.pythonhosted.org/packages/9d/7d/1b048eb460517ff9accd78bca0fa6ae61df2b276010538e586f834f5e402/ruff-0.11.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:169027e31c52c0e36c44ae9a9c7db35e505fee0b39f8d9fca7274a6305295a92", size = 10441060 },
|
590
|
+
{ url = "https://files.pythonhosted.org/packages/3a/57/8dc6ccfd8380e5ca3d13ff7591e8ba46a3b330323515a4996b991b10bd5d/ruff-0.11.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:305b93f9798aee582e91e34437810439acb28b5fc1fee6b8205c78c806845a94", size = 10058689 },
|
591
|
+
{ url = "https://files.pythonhosted.org/packages/23/bf/20487561ed72654147817885559ba2aa705272d8b5dee7654d3ef2dbf912/ruff-0.11.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:a681db041ef55550c371f9cd52a3cf17a0da4c75d6bd691092dfc38170ebc4b6", size = 11073703 },
|
592
|
+
{ url = "https://files.pythonhosted.org/packages/9d/27/04f2db95f4ef73dccedd0c21daf9991cc3b7f29901a4362057b132075aa4/ruff-0.11.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:07f1496ad00a4a139f4de220b0c97da6d4c85e0e4aa9b2624167b7d4d44fd6b6", size = 11532822 },
|
593
|
+
{ url = "https://files.pythonhosted.org/packages/e1/72/43b123e4db52144c8add336581de52185097545981ff6e9e58a21861c250/ruff-0.11.7-py3-none-win32.whl", hash = "sha256:f25dfb853ad217e6e5f1924ae8a5b3f6709051a13e9dad18690de6c8ff299e26", size = 10362436 },
|
594
|
+
{ url = "https://files.pythonhosted.org/packages/c5/a0/3e58cd76fdee53d5c8ce7a56d84540833f924ccdf2c7d657cb009e604d82/ruff-0.11.7-py3-none-win_amd64.whl", hash = "sha256:0a931d85959ceb77e92aea4bbedfded0a31534ce191252721128f77e5ae1f98a", size = 11566676 },
|
595
|
+
{ url = "https://files.pythonhosted.org/packages/68/ca/69d7c7752bce162d1516e5592b1cc6b6668e9328c0d270609ddbeeadd7cf/ruff-0.11.7-py3-none-win_arm64.whl", hash = "sha256:778c1e5d6f9e91034142dfd06110534ca13220bfaad5c3735f6cb844654f6177", size = 10677936 },
|
542
596
|
]
|
543
597
|
|
544
598
|
[[package]]
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.9.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
|