{"id":17180817,"url":"https://github.com/jsok/climax","last_synced_at":"2025-10-30T00:39:48.999Z","repository":{"id":13129760,"uuid":"15811788","full_name":"jsok/climax","owner":"jsok","description":"Dependency resolution","archived":false,"fork":false,"pushed_at":"2014-01-10T22:42:08.000Z","size":132,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T00:41:39.264Z","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":"olsn/SublimeText2-EaselJS-Completion","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsok.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}},"created_at":"2014-01-10T22:31:07.000Z","updated_at":"2014-01-10T22:42:10.000Z","dependencies_parsed_at":"2022-09-23T11:00:37.156Z","dependency_job_id":null,"html_url":"https://github.com/jsok/climax","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jsok/climax","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsok%2Fclimax","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsok%2Fclimax/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsok%2Fclimax/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsok%2Fclimax/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsok","download_url":"https://codeload.github.com/jsok/climax/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsok%2Fclimax/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281726124,"owners_count":26550920,"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-10-29T02:00:06.901Z","response_time":59,"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":"2024-10-15T00:31:52.005Z","updated_at":"2025-10-30T00:39:48.984Z","avatar_url":"https://github.com/jsok.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Climax - Dependency Resolution\n==============================\n\nUsage\n-----\n\n```python\n    from climax import Climax, Task\n\n    # Create tasks: Task(name, [targets], [dependencies])\n    task_main = Task('main.c', ['main.obj'], ['foo.obj', 'bar.obj'])\n    task_foo = Task('foo.c', ['foo.obj'], ['bar.obj', 'baz.obj'])\n    task_bar = Task('bar.c', ['bar.obj'], [])\n    task_baz = Task('baz.c', ['baz.obj'], [])\n\n    d = Climax()\n    d.register_task(task_main)\n    d.register_task(task_foo)\n    d.register_task(task_bar)\n    d.register_task(task_baz)\n\n    # Create the dependency graph\n    d.create_graph()\n\n    # Iteratable will return the order tasks should be executed\n    for task in d.resolve(task_main):\n        print task\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsok%2Fclimax","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsok%2Fclimax","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsok%2Fclimax/lists"}