ComfyUI Extension
comfy_ui_daply_nodes
Comfy UI Nodes by Daply
Daply-AI/comfy_ui_daply_nodes
Nodes1
On cloudLocal install
Categoryimage
Stars0
Updated5 months ago
Nodes (1)
Readme
Comfy UI Daply Nodes
ComfyUI custom nodes by Daply. One package, multiple nodes — install once, get all.
Nodes included
- Daply Image Loader URL — Load images from URLs or local paths (one per line), batched IMAGE + MASK. WebP→PNG, animated support, RGB/RGBA/Grayscale.
Installation
ComfyUI Manager
Manager → Install Custom Nodes → search Comfy UI Daply Nodes (or Daply Image Loader URL) → Install.
Manual
- Clone into your ComfyUI custom nodes folder so this repo is the node folder:
cd ComfyUI/custom_nodes git clone https://github.com/Daply-AI/comfy_ui_daply_nodes.git - Install dependencies:
pip install -r comfy_ui_daply_nodes/requirements.txt - Restart ComfyUI. Nodes appear under image (and any other categories you add).
Adding more nodes
- Create
nodes_<name>.pywith your node class and at the end:NODE_CLASS_MAPPINGS = {"YourNodeName": YourNodeClass} NODE_DISPLAY_NAME_MAPPINGS = {"YourNodeName": "Display Name"} - In
__init__.py, add your module to_NODE_MODULES:from . import nodes_image_loader_url from . import nodes_my_tool _NODE_MODULES = (nodes_image_loader_url, nodes_my_tool) - Restart ComfyUI.
License
MIT — see LICENSE.txt.