liblaf-cherries 0.4.1__py3-none-any.whl → 0.4.3__py3-none-any.whl
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.
- liblaf/cherries/_version.py +2 -2
- liblaf/cherries/plugins/git_.py +2 -1
- liblaf/cherries/plugins/logging.py +7 -9
- liblaf_cherries-0.4.3.dist-info/METADATA +132 -0
- {liblaf_cherries-0.4.1.dist-info → liblaf_cherries-0.4.3.dist-info}/RECORD +7 -7
- liblaf_cherries-0.4.1.dist-info/METADATA +0 -166
- {liblaf_cherries-0.4.1.dist-info → liblaf_cherries-0.4.3.dist-info}/WHEEL +0 -0
- {liblaf_cherries-0.4.1.dist-info → liblaf_cherries-0.4.3.dist-info}/licenses/LICENSE +0 -0
liblaf/cherries/_version.py
CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
28
28
|
commit_id: COMMIT_ID
|
29
29
|
__commit_id__: COMMIT_ID
|
30
30
|
|
31
|
-
__version__ = version = '0.4.
|
32
|
-
__version_tuple__ = version_tuple = (0, 4,
|
31
|
+
__version__ = version = '0.4.3'
|
32
|
+
__version_tuple__ = version_tuple = (0, 4, 3)
|
33
33
|
|
34
34
|
__commit_id__ = commit_id = None
|
liblaf/cherries/plugins/git_.py
CHANGED
@@ -23,6 +23,7 @@ class Git(core.Run):
|
|
23
23
|
inputs: list[Path] = attrs.field(factory=list)
|
24
24
|
outputs: list[Path] = attrs.field(factory=list)
|
25
25
|
repo: git.Repo = attrs.field(default=None)
|
26
|
+
verify: bool = False
|
26
27
|
|
27
28
|
@override
|
28
29
|
@core.impl(after=("Dvc",))
|
@@ -32,7 +33,7 @@ class Git(core.Run):
|
|
32
33
|
self.repo.git.add(all=True)
|
33
34
|
subprocess.run(["git", "status"], check=False)
|
34
35
|
message: str = self._make_commit_message()
|
35
|
-
self.repo.git.commit(message=message)
|
36
|
+
self.repo.git.commit(message=message, no_verify=not self.verify)
|
36
37
|
|
37
38
|
@override
|
38
39
|
@core.impl
|
@@ -1,3 +1,4 @@
|
|
1
|
+
from pathlib import Path
|
1
2
|
from typing import override
|
2
3
|
|
3
4
|
import attrs
|
@@ -8,19 +9,16 @@ from liblaf.cherries import core
|
|
8
9
|
|
9
10
|
@attrs.define
|
10
11
|
class Logging(core.Run):
|
12
|
+
@property
|
13
|
+
def log_file(self) -> Path:
|
14
|
+
return self.plugin_root.exp_dir / "run.log"
|
15
|
+
|
11
16
|
@override
|
12
17
|
@core.impl
|
13
18
|
def start(self, *args, **kwargs) -> None:
|
14
|
-
|
15
|
-
handlers=[
|
16
|
-
# Comet and many other experiment tracking platforms do not support links
|
17
|
-
grapes.logging.rich_handler(enable_link=False),
|
18
|
-
grapes.logging.file_handler(sink=self.plugin_root.exp_dir / "run.log"),
|
19
|
-
]
|
20
|
-
)
|
21
|
-
grapes.logging.init(profile=profile)
|
19
|
+
grapes.logging.init(enable_link=False, file=self.log_file)
|
22
20
|
|
23
21
|
@override
|
24
22
|
@core.impl
|
25
23
|
def end(self, *args, **kwargs) -> None:
|
26
|
-
self.plugin_root.log_asset(self.
|
24
|
+
self.plugin_root.log_asset(self.log_file)
|
@@ -0,0 +1,132 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: liblaf-cherries
|
3
|
+
Version: 0.4.3
|
4
|
+
Summary: 🍒 Sweet experiment tracking with Comet, DVC, and Git integration.
|
5
|
+
Project-URL: Changelog, https://github.com/liblaf/cherries/blob/main/CHANGELOG.md
|
6
|
+
Project-URL: Documentation, https://cherries.readthedocs.io/
|
7
|
+
Project-URL: Homepage, https://github.com/liblaf/cherries
|
8
|
+
Project-URL: Issue Tracker, https://github.com/liblaf/cherries/issues
|
9
|
+
Project-URL: Release Notes, https://github.com/liblaf/cherries/releases
|
10
|
+
Project-URL: Source Code, https://github.com/liblaf/cherries
|
11
|
+
Author-email: liblaf <30631553+liblaf@users.noreply.github.com>
|
12
|
+
License-Expression: MIT
|
13
|
+
License-File: LICENSE
|
14
|
+
Classifier: Development Status :: 4 - Beta
|
15
|
+
Classifier: Intended Audience :: Developers
|
16
|
+
Classifier: Intended Audience :: Science/Research
|
17
|
+
Classifier: License :: OSI Approved
|
18
|
+
Classifier: License :: OSI Approved :: MIT License
|
19
|
+
Classifier: Operating System :: OS Independent
|
20
|
+
Classifier: Programming Language :: Python
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
24
|
+
Classifier: Topic :: Software Development
|
25
|
+
Classifier: Topic :: Software Development :: Bug Tracking
|
26
|
+
Classifier: Topic :: Software Development :: Debuggers
|
27
|
+
Classifier: Topic :: Software Development :: Libraries
|
28
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
29
|
+
Classifier: Topic :: System
|
30
|
+
Classifier: Topic :: System :: Logging
|
31
|
+
Classifier: Topic :: Utilities
|
32
|
+
Classifier: Typing :: Typed
|
33
|
+
Requires-Python: >=3.12
|
34
|
+
Requires-Dist: attrs<26,>=25
|
35
|
+
Requires-Dist: comet-ml<4,>=3
|
36
|
+
Requires-Dist: dvc[all]<4,>=3
|
37
|
+
Requires-Dist: environs<15,>=14
|
38
|
+
Requires-Dist: gitpython<4,>=3
|
39
|
+
Requires-Dist: lazy-loader<0.5,>=0.4
|
40
|
+
Requires-Dist: liblaf-grapes<5,>=4
|
41
|
+
Requires-Dist: loguru<0.8,>=0.7
|
42
|
+
Requires-Dist: networkx<4,>=3
|
43
|
+
Requires-Dist: pydantic-settings<3,>=2
|
44
|
+
Requires-Dist: pydantic<3,>=2
|
45
|
+
Requires-Dist: rich<15,>=14
|
46
|
+
Requires-Dist: wrapt<2,>=1
|
47
|
+
Description-Content-Type: text/markdown
|
48
|
+
|
49
|
+
<div align="center" markdown>
|
50
|
+
<a name="readme-top"></a>
|
51
|
+
|
52
|
+

|
53
|
+
|
54
|
+
**[Explore the docs »](https://liblaf.github.io/cherries/)**
|
55
|
+
|
56
|
+
<!-- tangerine-start: badges/python.md -->
|
57
|
+
|
58
|
+
[](https://codecov.io/gh/liblaf/cherries)
|
59
|
+
[](https://github.com/liblaf/cherries/actions/workflows/mega-linter.yaml)
|
60
|
+
[](https://github.com/liblaf/cherries/actions/workflows/test.yaml)
|
61
|
+
[](https://results.pre-commit.ci/latest/github/liblaf/cherries/main)
|
62
|
+
[](https://codspeed.io/liblaf/cherries)
|
63
|
+
[](https://github.com/astral-sh/ruff)
|
64
|
+
[](https://pypi.org/project/liblaf-cherries)
|
65
|
+
[](https://pypi.org/project/liblaf-cherries)
|
66
|
+
[](https://pypi.org/project/liblaf-cherries)
|
67
|
+
|
68
|
+
<!-- tangerine-end -->
|
69
|
+
|
70
|
+
[Changelog](https://github.com/liblaf/cherries/blob/main/CHANGELOG.md) · [Report Bug](https://github.com/liblaf/cherries/issues) · [Request Feature](https://github.com/liblaf/cherries/issues)
|
71
|
+
|
72
|
+

|
73
|
+
|
74
|
+
</div>
|
75
|
+
|
76
|
+
## ✨ Features
|
77
|
+
|
78
|
+
- 🧪 **Experiment Tracking:** Seamlessly log parameters, metrics, and artifacts with automatic integration to Comet.ml, DVC, and local storage;
|
79
|
+
- 🔄 **Automated Versioning:** Automatic Git commits with detailed metadata including inputs, outputs, and parameters for full experiment reproducibility;
|
80
|
+
- 🧩 **Plugin Architecture:** Extensible plugin system with dependency-aware execution order and support for custom integrations;
|
81
|
+
- 📊 **Rich Configuration:** Pydantic-based configuration with automatic asset tracking for inputs and outputs using type annotations;
|
82
|
+
- 🤖 **Smart Automation:** Automatic detection of experiment directories, asset management, and intelligent logging configuration;
|
83
|
+
- ⚡ **Quick Setup:** Simple initialization script for DVC configuration and ready-to-use experiment templates;
|
84
|
+
|
85
|
+
## 📦 Installation
|
86
|
+
|
87
|
+
To install `liblaf-cherries`, run the following command:
|
88
|
+
|
89
|
+
```bash
|
90
|
+
uv add liblaf-cherries
|
91
|
+
```
|
92
|
+
|
93
|
+
## ⌨️ Local Development
|
94
|
+
|
95
|
+
You can use Github Codespaces for online development:
|
96
|
+
|
97
|
+
[](https://codespaces.new/liblaf/cherries)
|
98
|
+
|
99
|
+
Or clone it for local development:
|
100
|
+
|
101
|
+
```bash
|
102
|
+
gh repo clone liblaf/cherries
|
103
|
+
cd cherries
|
104
|
+
mise run install
|
105
|
+
```
|
106
|
+
|
107
|
+
## 🤝 Contributing
|
108
|
+
|
109
|
+
Contributions of all types are more than welcome, if you are interested in contributing code, feel free to check out our GitHub [Issues](https://github.com/liblaf/cherries/issues) to get stuck in to show us what you're made of.
|
110
|
+
|
111
|
+
[](https://github.com/liblaf/cherries/pulls)
|
112
|
+
|
113
|
+
[](https://github.com/liblaf/cherries/graphs/contributors)
|
114
|
+
|
115
|
+
## 🔗 More Projects
|
116
|
+
|
117
|
+
<!-- tangerine-start: projects/fruits.md -->
|
118
|
+
|
119
|
+
- **[🍇 Grapes](https://github.com/liblaf/grapes)** - Supercharge your Python with rich logging, precise timing, and seamless serialization.
|
120
|
+
- **[🍉 Melon](https://github.com/liblaf/melon)** - A comprehensive Python library for 3D mesh processing with advanced I/O capabilities, proximity analysis, and integration with external mesh processing tools.
|
121
|
+
- **[🍊 Tangerine](https://github.com/liblaf/tangerine)** - Squeeze dynamic content into your files with Tangerine's template magic.
|
122
|
+
- **[🍋🟩 Lime](https://github.com/liblaf/lime)** - AI-powered Git commit assistant and repository documentation generator
|
123
|
+
- **[🍎 Apple](https://github.com/liblaf/apple)** - A JAX and Warp library for differentiable physics simulation, featuring elastic energy models and finite element methods.
|
124
|
+
- **[🍒 Cherries](https://github.com/liblaf/cherries)** - Sweet experiment tracking with Comet, DVC, and Git integration.
|
125
|
+
<!-- tangerine-end -->
|
126
|
+
|
127
|
+
---
|
128
|
+
|
129
|
+
#### 📝 License
|
130
|
+
|
131
|
+
Copyright © 2025 [liblaf](https://github.com/liblaf). <br />
|
132
|
+
This project is [MIT](https://github.com/liblaf/cherries/blob/main/LICENSE) licensed.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
liblaf/cherries/__init__.py,sha256=OHb6Xou2v6u42swTgjRfzej4CIlRg4OmgOIQXUiRjKA,97
|
2
2
|
liblaf/cherries/__init__.pyi,sha256=vQIYxi3iwe0Uij8Q8RCFlzN5MCCDuWgcnyox01C_nJo,1066
|
3
3
|
liblaf/cherries/_entrypoint.py,sha256=pSRbOCuMhUnYrAsZTEideVbUDEmGocvKlMgGt_MX_Z0,2262
|
4
|
-
liblaf/cherries/_version.py,sha256=
|
4
|
+
liblaf/cherries/_version.py,sha256=bmI9ViMEsJ1Rjce-6ExwiNh2B7sZKTyBkze4k8NsTrU,704
|
5
5
|
liblaf/cherries/_version.pyi,sha256=Pnv4Bxw13LHeuVkPLPsTtnp4N4jOGcAfFJw05uMMgBY,108
|
6
6
|
liblaf/cherries/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
liblaf/cherries/typed.py,sha256=mim8QVtwczTSHyw5mhEdfFcXis9o32n0CZyu8BrEorE,50
|
@@ -30,9 +30,9 @@ liblaf/cherries/plugins/__init__.py,sha256=OHb6Xou2v6u42swTgjRfzej4CIlRg4OmgOIQX
|
|
30
30
|
liblaf/cherries/plugins/__init__.pyi,sha256=dyTB5ZS78Kg_7oWeChk_h7Ry_gU9k1sDiL5YOmnoG7I,177
|
31
31
|
liblaf/cherries/plugins/comet.py,sha256=DzQ-ktyFO6JeV1di89J3P38Ok4X07mTVtAgUZDm0FLc,3607
|
32
32
|
liblaf/cherries/plugins/dvc.py,sha256=2HslDy_8gcFehly2CNCSZpRs0Wet7RTGMwbxxlo9IVc,1052
|
33
|
-
liblaf/cherries/plugins/git_.py,sha256=
|
33
|
+
liblaf/cherries/plugins/git_.py,sha256=pcJDYUl3D11h4_v0paEH2SyfswTmicAjluWoWJpeJjM,2194
|
34
34
|
liblaf/cherries/plugins/local.py,sha256=WHBJo6HIJOoTBRedd2a6nKoTJsaSUxhGN0jSAV94de8,1714
|
35
|
-
liblaf/cherries/plugins/logging.py,sha256=
|
35
|
+
liblaf/cherries/plugins/logging.py,sha256=A2-fd7H96Jtg1eOOmMYp7AmT3133vDHd4HAklhjH6n0,533
|
36
36
|
liblaf/cherries/profiles/__init__.py,sha256=OHb6Xou2v6u42swTgjRfzej4CIlRg4OmgOIQXUiRjKA,97
|
37
37
|
liblaf/cherries/profiles/__init__.pyi,sha256=qXxy2LOG9hE0LKCnECdJSv2VoHhOTMVDE3sUKIuZKmw,292
|
38
38
|
liblaf/cherries/profiles/_abc.py,sha256=1tpRrocBZNHonWaj3a264GnL5UoGS_HqU06aNZpruqY,193
|
@@ -42,7 +42,7 @@ liblaf/cherries/profiles/_playground.py,sha256=Aru-7RVoxNhomPLUxDLiM5wD5ZCPLy5Ey
|
|
42
42
|
liblaf/cherries/utils/__init__.py,sha256=OHb6Xou2v6u42swTgjRfzej4CIlRg4OmgOIQXUiRjKA,97
|
43
43
|
liblaf/cherries/utils/__init__.pyi,sha256=F5aTcXpWVmUoctPbLfmQXKyuXYRspAIjaIzfL1_3Lrw,51
|
44
44
|
liblaf/cherries/utils/_functools.py,sha256=0Puwvj1Wq4kp3S--hI-CXwUBZ56AtfkqIzFHllQtuug,181
|
45
|
-
liblaf_cherries-0.4.
|
46
|
-
liblaf_cherries-0.4.
|
47
|
-
liblaf_cherries-0.4.
|
48
|
-
liblaf_cherries-0.4.
|
45
|
+
liblaf_cherries-0.4.3.dist-info/METADATA,sha256=l4dJ7883MyxpE1TkIigzEYAIpjWKWRKiJ2UJx6tVC3g,7023
|
46
|
+
liblaf_cherries-0.4.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
47
|
+
liblaf_cherries-0.4.3.dist-info/licenses/LICENSE,sha256=Ph4NzyU3lGVDeYv-mf8aRmImH8v9rVL9F362FV4G6Ow,1063
|
48
|
+
liblaf_cherries-0.4.3.dist-info/RECORD,,
|
@@ -1,166 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: liblaf-cherries
|
3
|
-
Version: 0.4.1
|
4
|
-
Project-URL: Changelog, https://github.com/liblaf/cherries/blob/main/CHANGELOG.md
|
5
|
-
Project-URL: Documentation, https://cherries.readthedocs.io/
|
6
|
-
Project-URL: Homepage, https://github.com/liblaf/cherries
|
7
|
-
Project-URL: Issue Tracker, https://github.com/liblaf/cherries/issues
|
8
|
-
Project-URL: Release Notes, https://github.com/liblaf/cherries/releases
|
9
|
-
Project-URL: Source Code, https://github.com/liblaf/cherries
|
10
|
-
Author-email: liblaf <30631553+liblaf@users.noreply.github.com>
|
11
|
-
License-Expression: MIT
|
12
|
-
License-File: LICENSE
|
13
|
-
Classifier: Development Status :: 4 - Beta
|
14
|
-
Classifier: Intended Audience :: Developers
|
15
|
-
Classifier: Intended Audience :: Science/Research
|
16
|
-
Classifier: License :: OSI Approved
|
17
|
-
Classifier: License :: OSI Approved :: MIT License
|
18
|
-
Classifier: Operating System :: OS Independent
|
19
|
-
Classifier: Programming Language :: Python
|
20
|
-
Classifier: Programming Language :: Python :: 3
|
21
|
-
Classifier: Programming Language :: Python :: 3.12
|
22
|
-
Classifier: Programming Language :: Python :: 3.13
|
23
|
-
Classifier: Topic :: Software Development
|
24
|
-
Classifier: Topic :: Software Development :: Bug Tracking
|
25
|
-
Classifier: Topic :: Software Development :: Debuggers
|
26
|
-
Classifier: Topic :: Software Development :: Libraries
|
27
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
28
|
-
Classifier: Topic :: System
|
29
|
-
Classifier: Topic :: System :: Logging
|
30
|
-
Classifier: Topic :: Utilities
|
31
|
-
Classifier: Typing :: Typed
|
32
|
-
Requires-Python: >=3.12
|
33
|
-
Requires-Dist: attrs<26,>=25
|
34
|
-
Requires-Dist: comet-ml<4,>=3
|
35
|
-
Requires-Dist: dvc[all]<4,>=3
|
36
|
-
Requires-Dist: environs<15,>=14
|
37
|
-
Requires-Dist: gitpython<4,>=3
|
38
|
-
Requires-Dist: lazy-loader<0.5,>=0.4
|
39
|
-
Requires-Dist: liblaf-grapes<3,>=2
|
40
|
-
Requires-Dist: loguru<0.8,>=0.7
|
41
|
-
Requires-Dist: networkx<4,>=3
|
42
|
-
Requires-Dist: pydantic-settings<3,>=2
|
43
|
-
Requires-Dist: pydantic<3,>=2
|
44
|
-
Requires-Dist: rich<15,>=14
|
45
|
-
Requires-Dist: wrapt<2,>=1
|
46
|
-
Description-Content-Type: text/markdown
|
47
|
-
|
48
|
-
<!-- -*- mode: markdown; -*- -->
|
49
|
-
|
50
|
-
<div align="center" markdown>
|
51
|
-
<a name="readme-top"></a>
|
52
|
-
|
53
|
-
<img
|
54
|
-
height="160"
|
55
|
-
src="https://cdn.jsdelivr.net/gh/microsoft/fluentui-emoji/assets/Cherries/3D/cherries_3d.png"
|
56
|
-
/>
|
57
|
-
|
58
|
-
# Cherries
|
59
|
-
|
60
|
-
TODO: DESCRIPTION <br />
|
61
|
-
[**Explore the docs »**](https://liblaf.github.io/cherries/)
|
62
|
-
|
63
|
-
<!-- tangerine-start: badges/python.md.jinja -->
|
64
|
-
|
65
|
-
[](https://codecov.io/gh/liblaf/cherries)
|
66
|
-
[](https://github.com/liblaf/cherries/actions/workflows/test.yaml)
|
67
|
-
[](https://github.com/liblaf/cherries)
|
68
|
-
<br />
|
69
|
-
[](https://pypi.org/project/liblaf-cherries)
|
70
|
-
[](https://pypi.org/project/liblaf-cherries)
|
71
|
-
[](https://pypi.org/project/liblaf-cherries)
|
72
|
-
<br />
|
73
|
-
[](https://github.com/liblaf/cherries/graphs/contributors)
|
74
|
-
[](https://github.com/liblaf/cherries/issues)
|
75
|
-
[](https://github.com/liblaf/cherries/blob/main/LICENSE)
|
76
|
-
[](https://github.com/liblaf/cherries/forks)
|
77
|
-
[](https://github.com/liblaf/cherries/stargazers)
|
78
|
-
|
79
|
-
<!-- tangerine-end -->
|
80
|
-
|
81
|
-
[Changelog](https://github.com/liblaf/cherries/blob/main/CHANGELOG.md) · [Report Bug](https://github.com/liblaf/cherries/issues) · [Request Feature](https://github.com/liblaf/cherries/issues)
|
82
|
-
|
83
|
-

|
84
|
-
|
85
|
-
</div>
|
86
|
-
|
87
|
-
## ✨ Features
|
88
|
-
|
89
|
-
- [x] ✨ **TODO:** FEATURES;
|
90
|
-
|
91
|
-
<div align="right" markdown>
|
92
|
-
|
93
|
-
[](#readme-top)
|
94
|
-
|
95
|
-
</div>
|
96
|
-
|
97
|
-
## 📦 Installation
|
98
|
-
|
99
|
-
To install `liblaf-cherries`, run the following command:
|
100
|
-
|
101
|
-
```bash
|
102
|
-
uv add liblaf-cherries
|
103
|
-
```
|
104
|
-
|
105
|
-
<div align="right" markdown>
|
106
|
-
|
107
|
-
[](#readme-top)
|
108
|
-
|
109
|
-
</div>
|
110
|
-
|
111
|
-
## ⌨️ Local Development
|
112
|
-
|
113
|
-
You can use Github Codespaces for online development:
|
114
|
-
|
115
|
-
[](https://codespaces.new/liblaf/cherries)
|
116
|
-
|
117
|
-
Or clone it for local development:
|
118
|
-
|
119
|
-
```bash
|
120
|
-
gh repo clone liblaf/cherries
|
121
|
-
cd cherries
|
122
|
-
mise run test
|
123
|
-
```
|
124
|
-
|
125
|
-
<div align="right" markdown>
|
126
|
-
|
127
|
-
[](#readme-top)
|
128
|
-
|
129
|
-
</div>
|
130
|
-
|
131
|
-
## 🤝 Contributing
|
132
|
-
|
133
|
-
Contributions of all types are more than welcome, if you are interested in contributing code, feel free to check out our GitHub [Issues](https://github.com/liblaf/cherries/issues) to get stuck in to show us what you're made of.
|
134
|
-
|
135
|
-
[](https://github.com/liblaf/cherries/pulls)
|
136
|
-
|
137
|
-
[](https://github.com/liblaf/cherries/graphs/contributors)
|
138
|
-
|
139
|
-
<div align="right" markdown>
|
140
|
-
|
141
|
-
[](#readme-top)
|
142
|
-
|
143
|
-
</div>
|
144
|
-
|
145
|
-
## 🔗 Links
|
146
|
-
|
147
|
-
### More Projects
|
148
|
-
|
149
|
-
- **[🍇 Grapes](https://github.com/liblaf/grapes)** - Powerful Python utilities for logging, timing, and more, making development smoother!
|
150
|
-
|
151
|
-
### Credits
|
152
|
-
|
153
|
-
- **Python** - <https://www.python.org/>
|
154
|
-
|
155
|
-
<div align="right" markdown>
|
156
|
-
|
157
|
-
[](#readme-top)
|
158
|
-
|
159
|
-
</div>
|
160
|
-
|
161
|
-
---
|
162
|
-
|
163
|
-
#### 📝 License
|
164
|
-
|
165
|
-
Copyright © 2025 [liblaf](https://github.com/liblaf). <br />
|
166
|
-
This project is [MIT](https://github.com/liblaf/cherries/blob/main/LICENSE) licensed.
|
File without changes
|
File without changes
|