comfy-cli 1.2.0__tar.gz → 1.2.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.
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/PKG-INFO +6 -5
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/README.md +5 -4
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/cmdline.py +1 -1
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/install.py +2 -4
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli.egg-info/PKG-INFO +6 -5
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/pyproject.toml +2 -2
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/LICENSE +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/__init__.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/__main__.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/__init__.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/custom_nodes/__init__.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/custom_nodes/bisect_custom_nodes.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/custom_nodes/cm_cli_util.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/custom_nodes/command.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/launch.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/models/models.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/command/run.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/config_manager.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/constants.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/env_checker.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/file_utils.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/git_utils.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/logging.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/registry/__init__.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/registry/api.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/registry/config_parser.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/registry/types.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/standalone.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/tracking.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/typing.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/ui.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/update.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/utils.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/uv.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli/workspace_manager.py +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli.egg-info/SOURCES.txt +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli.egg-info/dependency_links.txt +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli.egg-info/entry_points.txt +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli.egg-info/requires.txt +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/comfy_cli.egg-info/top_level.txt +0 -0
- {comfy_cli-1.2.0 → comfy_cli-1.2.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: comfy-cli
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: A CLI tool for installing and using ComfyUI.
|
|
5
5
|
Maintainer-email: Yoland Yan <yoland@drip.art>, James Kwon <hongilkwon316@gmail.com>, Robin Huang <robin@drip.art>, "Dr.Lt.Data" <dr.lt.data@gmail.com>
|
|
6
6
|
License: GPL-3.0-only
|
|
@@ -35,17 +35,18 @@ Requires-Dist: pytest; extra == "dev"
|
|
|
35
35
|
Requires-Dist: ruff; extra == "dev"
|
|
36
36
|
|
|
37
37
|
# Comfy-Cli: A Command Line Tool for ComfyUI
|
|
38
|
+
|
|
38
39
|
[](https://github.com/Comfy-Org/ComfyUI-Mirror/actions/workflows/test-workflows.yaml)
|
|
39
40
|
[](https://github.com/Comfy-Org/ComfyUI-Mirror/actions/workflows/test-workflows-windows.yaml)
|
|
40
41
|
|
|
42
|
+
[](https://codecov.io/github/Comfy-Org/comfy-cli)
|
|
43
|
+
|
|
41
44
|
comfy-cli is a command line tool that helps users easily install and manage
|
|
42
45
|
[ComfyUI](https://github.com/comfyanonymous/ComfyUI), a powerful open-source
|
|
43
46
|
machine learning framework. With comfy-cli, you can quickly set up ComfyUI,
|
|
44
47
|
install packages, and manage custom nodes, all from the convenience of your
|
|
45
48
|
terminal.
|
|
46
49
|
|
|
47
|
-
|
|
48
|
-
|
|
49
50
|
## Demo
|
|
50
51
|
|
|
51
52
|
<img src="https://github.com/yoland68/comfy-cli/raw/main/assets/comfy-demo.gif" width="400" alt="Comfy Command Demo">
|
|
@@ -186,7 +187,7 @@ comfy node [show|simple-show] [installed|enabled|not-installed|disabled|all|snap
|
|
|
186
187
|
#### Bisect custom nodes
|
|
187
188
|
|
|
188
189
|
If you encounter bugs only with custom nodes enabled, and want to find out which custom node(s) causes the bug,
|
|
189
|
-
|
|
190
|
+
the bisect tool can help you pinpoint the custom node that causes the issue.
|
|
190
191
|
|
|
191
192
|
- `comfy node bisect start`: Start a new bisect session with optional ComfyUI launch args. It automatically marks the starting state as bad, and takes all enabled nodes when the command executes as the test set.
|
|
192
193
|
- `comfy node bisect good`: Mark the current active set as good, indicating the problem is not within the test set.
|
|
@@ -199,7 +200,7 @@ If you encounter bugs only with custom nodes enabled, and want to find out which
|
|
|
199
200
|
|
|
200
201
|
`comfy model download --url <URL> ?[--relative-path <PATH>] ?[--set-civitai-api-token <TOKEN>]`
|
|
201
202
|
|
|
202
|
-
|
|
203
|
+
- URL: CivitAI, huggingface file url, ...
|
|
203
204
|
|
|
204
205
|
- Model remove
|
|
205
206
|
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
# Comfy-Cli: A Command Line Tool for ComfyUI
|
|
2
|
+
|
|
2
3
|
[](https://github.com/Comfy-Org/ComfyUI-Mirror/actions/workflows/test-workflows.yaml)
|
|
3
4
|
[](https://github.com/Comfy-Org/ComfyUI-Mirror/actions/workflows/test-workflows-windows.yaml)
|
|
4
5
|
|
|
6
|
+
[](https://codecov.io/github/Comfy-Org/comfy-cli)
|
|
7
|
+
|
|
5
8
|
comfy-cli is a command line tool that helps users easily install and manage
|
|
6
9
|
[ComfyUI](https://github.com/comfyanonymous/ComfyUI), a powerful open-source
|
|
7
10
|
machine learning framework. With comfy-cli, you can quickly set up ComfyUI,
|
|
8
11
|
install packages, and manage custom nodes, all from the convenience of your
|
|
9
12
|
terminal.
|
|
10
13
|
|
|
11
|
-
|
|
12
|
-
|
|
13
14
|
## Demo
|
|
14
15
|
|
|
15
16
|
<img src="https://github.com/yoland68/comfy-cli/raw/main/assets/comfy-demo.gif" width="400" alt="Comfy Command Demo">
|
|
@@ -150,7 +151,7 @@ comfy node [show|simple-show] [installed|enabled|not-installed|disabled|all|snap
|
|
|
150
151
|
#### Bisect custom nodes
|
|
151
152
|
|
|
152
153
|
If you encounter bugs only with custom nodes enabled, and want to find out which custom node(s) causes the bug,
|
|
153
|
-
|
|
154
|
+
the bisect tool can help you pinpoint the custom node that causes the issue.
|
|
154
155
|
|
|
155
156
|
- `comfy node bisect start`: Start a new bisect session with optional ComfyUI launch args. It automatically marks the starting state as bad, and takes all enabled nodes when the command executes as the test set.
|
|
156
157
|
- `comfy node bisect good`: Mark the current active set as good, indicating the problem is not within the test set.
|
|
@@ -163,7 +164,7 @@ If you encounter bugs only with custom nodes enabled, and want to find out which
|
|
|
163
164
|
|
|
164
165
|
`comfy model download --url <URL> ?[--relative-path <PATH>] ?[--set-civitai-api-token <TOKEN>]`
|
|
165
166
|
|
|
166
|
-
|
|
167
|
+
- URL: CivitAI, huggingface file url, ...
|
|
167
168
|
|
|
168
169
|
- Model remove
|
|
169
170
|
|
|
@@ -372,7 +372,7 @@ def checkout_stable_comfyui(version: str, repo_dir: str):
|
|
|
372
372
|
tag = str(selected_release["tag"])
|
|
373
373
|
console.print(
|
|
374
374
|
Panel(
|
|
375
|
-
f"
|
|
375
|
+
f"Checking out ComfyUI version: [bold cyan]{selected_release['tag']}[/bold cyan]",
|
|
376
376
|
title="[yellow]ComfyUI Checkout[/yellow]",
|
|
377
377
|
border_style="green",
|
|
378
378
|
expand=False,
|
|
@@ -382,11 +382,9 @@ def checkout_stable_comfyui(version: str, repo_dir: str):
|
|
|
382
382
|
with console.status("[bold green]Checking out tag...", spinner="dots"):
|
|
383
383
|
success = git_checkout_tag(repo_dir, tag)
|
|
384
384
|
if not success:
|
|
385
|
-
console.print("\n
|
|
385
|
+
console.print("\n[bold red]Failed to checkout tag![/bold red]")
|
|
386
386
|
sys.exit(1)
|
|
387
387
|
|
|
388
|
-
console.print("\n✅ [bold green]Successfully checked out tag![/bold green]")
|
|
389
|
-
|
|
390
388
|
|
|
391
389
|
def get_latest_release(repo_owner: str, repo_name: str) -> Optional[GithubRelease]:
|
|
392
390
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: comfy-cli
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: A CLI tool for installing and using ComfyUI.
|
|
5
5
|
Maintainer-email: Yoland Yan <yoland@drip.art>, James Kwon <hongilkwon316@gmail.com>, Robin Huang <robin@drip.art>, "Dr.Lt.Data" <dr.lt.data@gmail.com>
|
|
6
6
|
License: GPL-3.0-only
|
|
@@ -35,17 +35,18 @@ Requires-Dist: pytest; extra == "dev"
|
|
|
35
35
|
Requires-Dist: ruff; extra == "dev"
|
|
36
36
|
|
|
37
37
|
# Comfy-Cli: A Command Line Tool for ComfyUI
|
|
38
|
+
|
|
38
39
|
[](https://github.com/Comfy-Org/ComfyUI-Mirror/actions/workflows/test-workflows.yaml)
|
|
39
40
|
[](https://github.com/Comfy-Org/ComfyUI-Mirror/actions/workflows/test-workflows-windows.yaml)
|
|
40
41
|
|
|
42
|
+
[](https://codecov.io/github/Comfy-Org/comfy-cli)
|
|
43
|
+
|
|
41
44
|
comfy-cli is a command line tool that helps users easily install and manage
|
|
42
45
|
[ComfyUI](https://github.com/comfyanonymous/ComfyUI), a powerful open-source
|
|
43
46
|
machine learning framework. With comfy-cli, you can quickly set up ComfyUI,
|
|
44
47
|
install packages, and manage custom nodes, all from the convenience of your
|
|
45
48
|
terminal.
|
|
46
49
|
|
|
47
|
-
|
|
48
|
-
|
|
49
50
|
## Demo
|
|
50
51
|
|
|
51
52
|
<img src="https://github.com/yoland68/comfy-cli/raw/main/assets/comfy-demo.gif" width="400" alt="Comfy Command Demo">
|
|
@@ -186,7 +187,7 @@ comfy node [show|simple-show] [installed|enabled|not-installed|disabled|all|snap
|
|
|
186
187
|
#### Bisect custom nodes
|
|
187
188
|
|
|
188
189
|
If you encounter bugs only with custom nodes enabled, and want to find out which custom node(s) causes the bug,
|
|
189
|
-
|
|
190
|
+
the bisect tool can help you pinpoint the custom node that causes the issue.
|
|
190
191
|
|
|
191
192
|
- `comfy node bisect start`: Start a new bisect session with optional ComfyUI launch args. It automatically marks the starting state as bad, and takes all enabled nodes when the command executes as the test set.
|
|
192
193
|
- `comfy node bisect good`: Mark the current active set as good, indicating the problem is not within the test set.
|
|
@@ -199,7 +200,7 @@ If you encounter bugs only with custom nodes enabled, and want to find out which
|
|
|
199
200
|
|
|
200
201
|
`comfy model download --url <URL> ?[--relative-path <PATH>] ?[--set-civitai-api-token <TOKEN>]`
|
|
201
202
|
|
|
202
|
-
|
|
203
|
+
- URL: CivitAI, huggingface file url, ...
|
|
203
204
|
|
|
204
205
|
- Model remove
|
|
205
206
|
|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "comfy-cli"
|
|
7
7
|
license = { text = "GPL-3.0-only" }
|
|
8
|
-
version = "v1.2.
|
|
8
|
+
version = "v1.2.2" # Will be filled in by the CI/CD pipeline. Check publish_package.py.
|
|
9
9
|
requires-python = ">= 3.9"
|
|
10
10
|
description = "A CLI tool for installing and using ComfyUI."
|
|
11
11
|
readme = "README.md"
|
|
@@ -61,7 +61,7 @@ include = ["comfy_cli*"]
|
|
|
61
61
|
|
|
62
62
|
[tool.ruff]
|
|
63
63
|
line-length = 120
|
|
64
|
-
target-version = "v1.2.
|
|
64
|
+
target-version = "v1.2.2"
|
|
65
65
|
|
|
66
66
|
[tool.ruff.lint]
|
|
67
67
|
select = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|