liblaf-cherries 0.4.0__py3-none-any.whl → 0.4.2__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.
@@ -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.0'
32
- __version_tuple__ = version_tuple = (0, 4, 0)
31
+ __version__ = version = '0.4.2'
32
+ __version_tuple__ = version_tuple = (0, 4, 2)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,6 +1,6 @@
1
1
  from pathlib import Path
2
2
 
3
- from liblaf.grapes.typed import PathLike
3
+ from liblaf.grapes.typing import PathLike
4
4
 
5
5
  from ._path import exp_dir
6
6
 
@@ -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
- profile = grapes.logging.profiles.ProfileCherries(
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.plugin_root.exp_dir / "run.log")
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.2
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
+ ![cherries](https://socialify.git.ci/liblaf/cherries/image?description=1&forks=1&issues=1&language=1&logo=https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2Ffluentui-emoji%2Frefs%2Fheads%2Fmain%2Fassets%2FCherries%2F3D%2Fcherries_3d.png&name=1&owner=1&pattern=Transparent&pulls=1&stargazers=1&theme=Auto)
53
+
54
+ **[Explore the docs »](https://liblaf.github.io/cherries/)**
55
+
56
+ <!-- tangerine-start: badges/python.md -->
57
+
58
+ [![codecov](https://codecov.io/gh/liblaf/cherries/graph/badge.svg)](https://codecov.io/gh/liblaf/cherries)
59
+ [![MegaLinter](https://github.com/liblaf/cherries/actions/workflows/mega-linter.yaml/badge.svg)](https://github.com/liblaf/cherries/actions/workflows/mega-linter.yaml)
60
+ [![Test](https://github.com/liblaf/cherries/actions/workflows/test.yaml/badge.svg)](https://github.com/liblaf/cherries/actions/workflows/test.yaml)
61
+ [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/liblaf/cherries/main.svg)](https://results.pre-commit.ci/latest/github/liblaf/cherries/main)
62
+ [![CodSpeed Badge](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/liblaf/cherries)
63
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
64
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/liblaf-cherries?logo=PyPI&label=Downloads)](https://pypi.org/project/liblaf-cherries)
65
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/liblaf-cherries?logo=Python&label=Python)](https://pypi.org/project/liblaf-cherries)
66
+ [![PyPI - Version](https://img.shields.io/pypi/v/liblaf-cherries?logo=PyPI&label=PyPI)](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
+ ![](https://cdn.jsdelivr.net/gh/andreasbm/readme/assets/lines/rainbow.png)
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://github.com/codespaces/badge.svg)](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
+ [![PR Welcome](https://img.shields.io/badge/%F0%9F%A4%AF%20PR%20WELCOME-%E2%86%92-ffcb47?labelColor=black&style=for-the-badge)](https://github.com/liblaf/cherries/pulls)
112
+
113
+ [![Contributors](https://contrib.nn.ci/api?repo=liblaf/cherries)](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=2_0GUP7yBCXRus-qiJKxQD62z172WSs1sQ6DVpPsbmM,704
4
+ liblaf/cherries/_version.py,sha256=A45grTqzrHuDn1CT9K5GVUbY4_Q3OSTcXAl3zdHzcEI,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
@@ -25,14 +25,14 @@ liblaf/cherries/paths/__init__.py,sha256=OHb6Xou2v6u42swTgjRfzej4CIlRg4OmgOIQXUi
25
25
  liblaf/cherries/paths/__init__.pyi,sha256=Xf6-Igmj2K8hmLsJ3sXCj2Lrm0gIWcbARQB4oMP1zps,367
26
26
  liblaf/cherries/paths/_convert.py,sha256=IrXN_9s-rfH7EKk0_ilr1giGmfN8FlvB_edm2kI-k3I,807
27
27
  liblaf/cherries/paths/_path.py,sha256=36T4eE8OdT83LDwEaKjcBWS5r4jZEGBXFxeJqiB7-IQ,1604
28
- liblaf/cherries/paths/_special.py,sha256=w6bflcWiYzx3B_wr88JcZiUNrFRoviSLwqotYZ8XXII,1099
28
+ liblaf/cherries/paths/_special.py,sha256=HVmH6lCnj1TVzjAEmO93MGMTQi7JQWss4sHSNMieczY,1100
29
29
  liblaf/cherries/plugins/__init__.py,sha256=OHb6Xou2v6u42swTgjRfzej4CIlRg4OmgOIQXUiRjKA,97
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
33
  liblaf/cherries/plugins/git_.py,sha256=F6JLsfkNLKseCIRrpusysW_VFhcW_44Bwfck9u8J2TI,2142
34
34
  liblaf/cherries/plugins/local.py,sha256=WHBJo6HIJOoTBRedd2a6nKoTJsaSUxhGN0jSAV94de8,1714
35
- liblaf/cherries/plugins/logging.py,sha256=xgK41wUQjm-jqW_d4kDbzn9m-V1sdeIX5_-d0yS32hM,758
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.0.dist-info/METADATA,sha256=6Pn0aYTIS-sgG01GpJ3yFKf4O_z9uGFfTXAV9P2AGZQ,6253
46
- liblaf_cherries-0.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
47
- liblaf_cherries-0.4.0.dist-info/licenses/LICENSE,sha256=Ph4NzyU3lGVDeYv-mf8aRmImH8v9rVL9F362FV4G6Ow,1063
48
- liblaf_cherries-0.4.0.dist-info/RECORD,,
45
+ liblaf_cherries-0.4.2.dist-info/METADATA,sha256=XUlqhoGEIaT6jaiQPRLO3x17vJI2bgV_uFIMh59oqQ4,7023
46
+ liblaf_cherries-0.4.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
47
+ liblaf_cherries-0.4.2.dist-info/licenses/LICENSE,sha256=Ph4NzyU3lGVDeYv-mf8aRmImH8v9rVL9F362FV4G6Ow,1063
48
+ liblaf_cherries-0.4.2.dist-info/RECORD,,
@@ -1,167 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: liblaf-cherries
3
- Version: 0.4.0
4
- Summary: Add your description here
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<3,>=2
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
- <!-- -*- mode: markdown; -*- -->
50
-
51
- <div align="center" markdown>
52
- <a name="readme-top"></a>
53
-
54
- <img
55
- height="160"
56
- src="https://cdn.jsdelivr.net/gh/microsoft/fluentui-emoji/assets/Cherries/3D/cherries_3d.png"
57
- />
58
-
59
- # Cherries
60
-
61
- TODO: DESCRIPTION <br />
62
- [**Explore the docs »**](https://liblaf.github.io/cherries/)
63
-
64
- <!-- tangerine-start: badges/python.md.jinja -->
65
-
66
- [![Codecov](https://img.shields.io/codecov/c/github/liblaf/cherries?logo=Codecov&label=Coverage)](https://codecov.io/gh/liblaf/cherries)
67
- [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/liblaf/cherries/test.yaml?logo=GitHub%20Actions&label=Test)](https://github.com/liblaf/cherries/actions/workflows/test.yaml)
68
- [![Lines of Code](https://tokei.rs/b1/github.com/liblaf/cherries?category=code&label=Lines%20of%20Code&style=flat)](https://github.com/liblaf/cherries)
69
- <br />
70
- [![PyPI - Downloads](https://img.shields.io/pypi/dm/liblaf-cherries?logo=PyPI&label=Downloads)](https://pypi.org/project/liblaf-cherries)
71
- [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/liblaf-cherries?logo=Python&label=Python)](https://pypi.org/project/liblaf-cherries)
72
- [![PyPI - Version](https://img.shields.io/pypi/v/liblaf-cherries?logo=PyPI&label=PyPI)](https://pypi.org/project/liblaf-cherries)
73
- <br />
74
- [![GitHub Contributors](https://img.shields.io/github/contributors/liblaf/cherries?logo=GitHub&label=Contributors)](https://github.com/liblaf/cherries/graphs/contributors)
75
- [![GitHub Issues](https://img.shields.io/github/issues/liblaf/cherries?logo=GitHub&label=Issues)](https://github.com/liblaf/cherries/issues)
76
- [![GitHub License](https://img.shields.io/github/license/liblaf/cherries?label=License)](https://github.com/liblaf/cherries/blob/main/LICENSE)
77
- [![GitHub Forks](https://img.shields.io/github/forks/liblaf/cherries)](https://github.com/liblaf/cherries/forks)
78
- [![GitHub Repo Stars](https://img.shields.io/github/stars/liblaf/cherries)](https://github.com/liblaf/cherries/stargazers)
79
-
80
- <!-- tangerine-end -->
81
-
82
- [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)
83
-
84
- ![](https://cdn.jsdelivr.net/gh/andreasbm/readme/assets/lines/rainbow.png)
85
-
86
- </div>
87
-
88
- ## ✨ Features
89
-
90
- - [x] ✨ **TODO:** FEATURES;
91
-
92
- <div align="right" markdown>
93
-
94
- [![](https://img.shields.io/badge/-BACK_TO_TOP-black?style=flat-square)](#readme-top)
95
-
96
- </div>
97
-
98
- ## 📦 Installation
99
-
100
- To install `liblaf-cherries`, run the following command:
101
-
102
- ```bash
103
- $ uv add liblaf-cherries
104
- ```
105
-
106
- <div align="right" markdown>
107
-
108
- [![](https://img.shields.io/badge/-BACK_TO_TOP-black?style=flat-square)](#readme-top)
109
-
110
- </div>
111
-
112
- ## ⌨️ Local Development
113
-
114
- You can use Github Codespaces for online development:
115
-
116
- [![](https://github.com/codespaces/badge.svg)](https://codespaces.new/liblaf/cherries)
117
-
118
- Or clone it for local development:
119
-
120
- ```bash
121
- $ gh repo clone liblaf/cherries
122
- $ cd cherries
123
- $ mise run test
124
- ```
125
-
126
- <div align="right" markdown>
127
-
128
- [![](https://img.shields.io/badge/-BACK_TO_TOP-black?style=flat-square)](#readme-top)
129
-
130
- </div>
131
-
132
- ## 🤝 Contributing
133
-
134
- 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.
135
-
136
- [![](https://img.shields.io/badge/%F0%9F%A4%AF%20PR%20WELCOME-%E2%86%92-ffcb47?labelColor=black&style=for-the-badge)](https://github.com/liblaf/cherries/pulls)
137
-
138
- [![](https://contrib.rocks/image?repo=liblaf%2Fcherries)](https://github.com/liblaf/cherries/graphs/contributors)
139
-
140
- <div align="right" markdown>
141
-
142
- [![](https://img.shields.io/badge/-BACK_TO_TOP-black?style=flat-square)](#readme-top)
143
-
144
- </div>
145
-
146
- ## 🔗 Links
147
-
148
- ### More Projects
149
-
150
- - **[🍇 Grapes](https://github.com/liblaf/grapes)** - Powerful Python utilities for logging, timing, and more, making development smoother!
151
-
152
- ### Credits
153
-
154
- - **Python** - <https://www.python.org/>
155
-
156
- <div align="right" markdown>
157
-
158
- [![](https://img.shields.io/badge/-BACK_TO_TOP-black?style=flat-square)](#readme-top)
159
-
160
- </div>
161
-
162
- ---
163
-
164
- #### 📝 License
165
-
166
- Copyright © 2025 [liblaf](https://github.com/liblaf). <br />
167
- This project is [MIT](https://github.com/liblaf/cherries/blob/main/LICENSE) licensed.