{"id":30396152,"url":"https://github.com/terradue/cwl-loader","last_synced_at":"2026-06-15T14:00:29.735Z","repository":{"id":309359904,"uuid":"1035900141","full_name":"Terradue/cwl-loader","owner":"Terradue","description":"Simple utilities to load CWL documents in a transparent way","archived":false,"fork":false,"pushed_at":"2026-05-29T12:53:51.000Z","size":949,"stargazers_count":2,"open_issues_count":3,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-29T14:19:46.751Z","etag":null,"topics":["cwl","cwl-workflow"],"latest_commit_sha":null,"homepage":"https://terradue.github.io/cwl-loader/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Terradue.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":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-11T09:04:25.000Z","updated_at":"2026-05-13T15:19:59.000Z","dependencies_parsed_at":"2025-08-11T13:23:34.855Z","dependency_job_id":"47e05618-a45e-4ace-a8b2-a54885bce602","html_url":"https://github.com/Terradue/cwl-loader","commit_stats":null,"previous_names":["terradue/cwl-loader"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/Terradue/cwl-loader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Terradue%2Fcwl-loader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Terradue%2Fcwl-loader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Terradue%2Fcwl-loader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Terradue%2Fcwl-loader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Terradue","download_url":"https://codeload.github.com/Terradue/cwl-loader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Terradue%2Fcwl-loader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34365597,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"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":["cwl","cwl-workflow"],"created_at":"2025-08-21T12:26:38.726Z","updated_at":"2026-06-15T14:00:29.728Z","avatar_url":"https://github.com/Terradue.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cwl-loader\n\n[![PyPI - Version](https://img.shields.io/pypi/v/cwl-loader.svg)](https://pypi.org/project/cwl-loader)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cwl-loader.svg)](https://pypi.org/project/cwl-loader)\n\n`cwl-loader` provides utilities to load CWL documents (local files, URLs, streams, or strings) into [cwl-utils](https://github.com/common-workflow-language/cwl-utils) object models, normalize references, and sort dependency graphs.\n\n## Installation\n\n```bash\npip install cwl-loader\n```\n\n## Quick Start\n\nLoad a CWL document from a URL or local path:\n\n```python\nfrom cwl_loader import load_cwl_from_location\n\nprocess = load_cwl_from_location(\"workflow.cwl\")\n```\n\nLoad from in-memory text:\n\n```python\nfrom cwl_loader import load_cwl_from_string_content\n\ncontent = \"\"\"\ncwlVersion: v1.2\nclass: CommandLineTool\nid: example-tool\nbaseCommand: echo\ninputs: []\noutputs: []\n\"\"\"\n\nprocess = load_cwl_from_string_content(content)\n```\n\nDump back to YAML:\n\n```python\nfrom cwl_loader import dump_cwl\n\nwith open(\"normalized.cwl\", \"w\", encoding=\"utf-8\") as out:\n    dump_cwl(process, out)\n```\n\n## Development\n\nRun tests:\n\n```bash\ntask test\n```\n\nOr directly with Hatch:\n\n```bash\nhatch run test:test\n```\n\nRun code quality checks:\n\n```bash\ntask check\ntask lint\n```\n\n## Documentation\n\nProject documentation is published at:\nhttps://Terradue.github.io/cwl-loader/\n\n## Contributing\n\nIssues and pull requests are welcome:\nhttps://github.com/eoap/cwl-loader/issues\n\n## License\n\nLicensed under the Apache License 2.0.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterradue%2Fcwl-loader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterradue%2Fcwl-loader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterradue%2Fcwl-loader/lists"}