{"id":30885513,"url":"https://github.com/Shellishack/comfyui_remote_media_io","last_synced_at":"2025-09-08T12:04:23.672Z","repository":{"id":312984072,"uuid":"1049548039","full_name":"Shellishack/comfyui_remote_media_io","owner":"Shellishack","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-03T06:36:08.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-03T08:29:34.244Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Shellishack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-03T06:27:34.000Z","updated_at":"2025-09-03T06:36:11.000Z","dependencies_parsed_at":"2025-09-03T08:29:36.149Z","dependency_job_id":"89ac24bb-caef-4421-94e5-41e107ccbbfd","html_url":"https://github.com/Shellishack/comfyui_remote_media_io","commit_stats":null,"previous_names":["shellishack/comfyui_remote_media_io"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Shellishack/comfyui_remote_media_io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shellishack%2Fcomfyui_remote_media_io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shellishack%2Fcomfyui_remote_media_io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shellishack%2Fcomfyui_remote_media_io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shellishack%2Fcomfyui_remote_media_io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Shellishack","download_url":"https://codeload.github.com/Shellishack/comfyui_remote_media_io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shellishack%2Fcomfyui_remote_media_io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274181739,"owners_count":25236552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-08T12:01:46.880Z","updated_at":"2025-09-08T12:04:23.663Z","avatar_url":"https://github.com/Shellishack.png","language":"Python","funding_links":[],"categories":["Workflows (3395) sorted by GitHub Stars"],"sub_categories":[],"readme":"# comfyui_remote_media_io\n\nLoad media (image/video/audio) from remote URL, and save results to remote storage.\n\n\u003e [!NOTE]\n\u003e This projected was created with a [cookiecutter](https://github.com/Comfy-Org/cookiecutter-comfy-extension) template. It helps you start writing custom nodes without worrying about the Python setup.\n\n## Quickstart\n\n1. Install [ComfyUI](https://docs.comfy.org/get_started).\n1. Install [ComfyUI-Manager](https://github.com/ltdrdata/ComfyUI-Manager)\n1. Look up this extension in ComfyUI-Manager. If you are installing manually, clone this repository under `ComfyUI/custom_nodes`.\n1. Restart ComfyUI.\n\n# Features\n\n- A list of features\n\n## Develop\n\nTo install the dev dependencies and pre-commit (will run the ruff hook), do:\n\n```bash\ncd comfyui_remote_media_io\npip install -e .[dev]\npre-commit install\n```\n\nThe `-e` flag above will result in a \"live\" install, in the sense that any changes you make to your node extension will automatically be picked up the next time you run ComfyUI.\n\n## Publish to Github\n\nInstall Github Desktop or follow these [instructions](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) for ssh.\n\n1. Create a Github repository that matches the directory name. \n2. Push the files to Git\n```\ngit add .\ngit commit -m \"project scaffolding\"\ngit push\n``` \n\n## Writing custom nodes\n\nAn example custom node is located in [node.py](src/comfyui_remote_media_io/nodes.py). To learn more, read the [docs](https://docs.comfy.org/essentials/custom_node_overview).\n\n\n## Tests\n\nThis repo contains unit tests written in Pytest in the `tests/` directory. It is recommended to unit test your custom node.\n\n- [build-pipeline.yml](.github/workflows/build-pipeline.yml) will run pytest and linter on any open PRs\n- [validate.yml](.github/workflows/validate.yml) will run [node-diff](https://github.com/Comfy-Org/node-diff) to check for breaking changes\n\n## Publishing to Registry\n\nIf you wish to share this custom node with others in the community, you can publish it to the registry. We've already auto-populated some fields in `pyproject.toml` under `tool.comfy`, but please double-check that they are correct.\n\nYou need to make an account on https://registry.comfy.org and create an API key token.\n\n- [ ] Go to the [registry](https://registry.comfy.org). Login and create a publisher id (everything after the `@` sign on your registry profile). \n- [ ] Add the publisher id into the pyproject.toml file.\n- [ ] Create an api key on the Registry for publishing from Github. [Instructions](https://docs.comfy.org/registry/publishing#create-an-api-key-for-publishing).\n- [ ] Add it to your Github Repository Secrets as `REGISTRY_ACCESS_TOKEN`.\n\nA Github action will run on every git push. You can also run the Github action manually. Full instructions [here](https://docs.comfy.org/registry/publishing). Join our [discord](https://discord.com/invite/comfyorg) if you have any questions!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FShellishack%2Fcomfyui_remote_media_io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FShellishack%2Fcomfyui_remote_media_io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FShellishack%2Fcomfyui_remote_media_io/lists"}