Skip to main content

A Python client library for interacting with ComfyUI servers and managing image generation workflows.

Project description

comfy-proxy

A Python client library for interacting with ComfyUI servers and managing image generation workflows.

Features

  • Single and multi-instance ComfyUI server management
  • Async workflow execution
  • Flexible address configuration (single, multiple, port ranges)
  • Built-in workflow templates
  • Customizable image sizes and parameters
  • Websocket-based image generation and retrieval

Installation

ComfyProxy requires Python 3.11 or later. Install using pip:

pip install comfy-proxy

Quick Start

import asyncio
from comfy_proxy.comfy import SingleComfy
from comfy_proxy.workflows.flux import FluxModel, FluxWorkflowParams, FluxWorkflow
from comfy_proxy.workflow import Sizes

async def generate_image():
    # Initialize a ComfyUI instance
    comfy = Comfy("127.0.0.1:7821")
    
    # Configure model and parameters
    model = FluxModel()
    params = FluxWorkflowParams(
        prompt="a beautiful sunset over mountains",
        model=model,
        size=Sizes.LANDSCAPE_16_9,
        seed=42,
        batch_size=1
    )
    
    # Create and execute workflow
    workflow = FluxWorkflow(params)
    async for image_data in comfy.generate(workflow):
        with open("generated_image.png", "wb") as f:
            f.write(image_data)
        break  # Save first image only

# Run the example
asyncio.run(generate_image())

Multiple ComfyUI Instances

ComfyProxy can distribute work across multiple ComfyUI servers:

from comfy_proxy.comfy import Comfy

# Initialize with multiple instances
comfy = Comfy("127.0.0.1:8188-8192")  # Port range
# or
comfy = Comfy(["127.0.0.1:8188", "127.0.0.1:8189"])  # List
# or
comfy = Comfy("127.0.0.1:8188,127.0.0.1:8189")  # Comma-separated

Development

Requirements:

  • Python 3.11+
  • Poetry for dependency management

Setup:

# Clone repository
git clone https://github.com/yourusername/comfy-proxy.git
cd comfy-proxy

# Install dependencies
poetry install

# Run tests
poetry run pytest

Custom Workflows

ComfyProxy comes with some built-in workflows (like FluxWorkflow), but you can easily create your own:

from comfy_proxy.workflow import ComfyWorkflow, ComfyNode

class MyCustomWorkflow(ComfyWorkflow):
    def __init__(self, params):
        super().__init__()
        self.params = params
        self._build_workflow()
        
    def _build_workflow(self):
        # Add nodes to create your workflow
        checkpoint_node = self.add_node(
            "CheckpointLoaderSimple",
            {"ckpt_name": "sd_xl_base_1.0.safetensors"}
        )
        # ... add more nodes and connect them

We welcome contributions of basic workflows for popular models:

  • Stable Diffusion 1.5
  • SDXL
  • SD Turbo
  • SD 3.0
  • etc.

For more complex use cases, you can implement the ComfyWorkflow class directly in your own codebase to create custom workflows with additional functionality.

License

MIT License - see LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

comfy_proxy-0.1.1.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

comfy_proxy-0.1.1-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file comfy_proxy-0.1.1.tar.gz.

File metadata

  • Download URL: comfy_proxy-0.1.1.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.8.0-64-generic

File hashes

Hashes for comfy_proxy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b2f272f5733b150f96301beb7a6b61a4e409089eb593983ec9f35c5fd20e8f37
MD5 d15bcd9e02055efcf44166ae33582c45
BLAKE2b-256 799ed5c059f9299a486d43a4d21bc7d3c888022c477616fad4a7bdb9e2f2a232

See more details on using hashes here.

File details

Details for the file comfy_proxy-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: comfy_proxy-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.8.0-64-generic

File hashes

Hashes for comfy_proxy-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3bd5d5e9ec05eb093ee7ebb3d3178f54f4dcc598b360b5abf5c1f2e7e7a2f2e4
MD5 33e219203f195c455bfc8917dd224253
BLAKE2b-256 be017d5b97cc214d9e8193e37f2f97904f9ccdd328c2340b3581e5e889c79f35

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page