{"id":16098590,"url":"https://github.com/mtth/azkaban","last_synced_at":"2026-03-07T08:01:21.552Z","repository":{"id":11243865,"uuid":"13640495","full_name":"mtth/azkaban","owner":"mtth","description":"Lightweight Azkaban client","archived":false,"fork":false,"pushed_at":"2020-01-28T16:07:49.000Z","size":389,"stargazers_count":77,"open_issues_count":4,"forks_count":40,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-09-30T04:07:31.736Z","etag":null,"topics":["azkaban","python"],"latest_commit_sha":null,"homepage":"http://azkabancli.readthedocs.org","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/mtth.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES","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":"2013-10-17T06:06:12.000Z","updated_at":"2024-03-29T11:45:10.000Z","dependencies_parsed_at":"2022-09-03T21:30:48.540Z","dependency_job_id":null,"html_url":"https://github.com/mtth/azkaban","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/mtth/azkaban","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtth%2Fazkaban","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtth%2Fazkaban/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtth%2Fazkaban/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtth%2Fazkaban/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mtth","download_url":"https://codeload.github.com/mtth/azkaban/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtth%2Fazkaban/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209796,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["azkaban","python"],"created_at":"2024-10-09T18:24:04.161Z","updated_at":"2026-03-07T08:01:21.506Z","avatar_url":"https://github.com/mtth.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# AzkabanCLI [![Build badge](https://travis-ci.org/mtth/azkaban.png?branch=master)](https://travis-ci.org/mtth/azkaban) [![Pypi badge](https://badge.fury.io/py/azkaban.svg)](https://pypi.python.org/pypi/azkaban/) [![Downloads badge](https://img.shields.io/pypi/dm/azkaban.svg)](https://pypistats.org/packages/azkaban)\n\nA lightweight [Azkaban][] client providing:\n\n* A command line interface to run workflows, upload projects, etc.\n* A convenient and extensible way for building projects.\n\n## Sample\n\nBelow is a simple configuration file for a project containing a workflow with \nthree jobs:\n\n```python\nfrom azkaban import Job, Project\nfrom getpass import getuser\n\nPROJECT = Project('sample')\n\n# properties available to all jobs\nPROJECT.properties = {\n  'user.to.proxy': getuser(),\n}\n\n# dictionary of jobs\nJOBS = {\n  'first': Job({'type': 'command', 'command': 'echo \"Hello\"'}),\n  'second': Job({'type': 'command', 'command': 'echo \"World\"'}),\n  'third': Job({'type': 'noop', 'dependencies': 'first,second'}),\n}\n\nfor name, job in JOBS.items():\n  PROJECT.add_job(name, job)\n```\n\nThe [examples][] directory contains another sample project that uses Azkaban \nproperties to build a project with two configurations: production and test, \nwithout any job duplication.\n\n## Documentation\n\nThe full documentation can be found [here][doc].\n\n## Installation\n\nUsing [pip][]:\n\n```sh\n$ pip install azkaban\n```\n\n## Development\n\nRun tests:\n\n```sh\n$ nosetests\n```\n\nTo also run the integration tests against an Azkaban server, create\n`~/.azkabanrc` that includes at least:\n\n```cfg\n[azkaban]\ntest.alias = local\n\n[alias.local]\nurl = azkaban:azkaban@http://localhost:8081\n```\n\n[Azkaban]: http://data.linkedin.com/opensource/azkaban\n[doc]: http://azkabancli.readthedocs.org/\n[examples]: https://github.com/mtth/azkaban/tree/master/examples\n[pip]: http://www.pip-installer.org/en/latest/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtth%2Fazkaban","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmtth%2Fazkaban","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtth%2Fazkaban/lists"}