├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── examples ├── advanced_example.png ├── advanced_workflow.json ├── basic_example.png └── basic_workflow.json ├── nodes.py ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/examples/advanced_example.png -------------------------------------------------------------------------------- /examples/advanced_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/examples/advanced_workflow.json -------------------------------------------------------------------------------- /examples/basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/examples/basic_example.png -------------------------------------------------------------------------------- /examples/basic_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/examples/basic_workflow.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephThomasParker/ComfyUI-DrawThingsWrapper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | PIL 3 | requests 4 | torch 5 | --------------------------------------------------------------------------------