{"id":18598178,"url":"https://github.com/bbugyi200/hush","last_synced_at":"2025-05-16T14:10:59.282Z","repository":{"id":57457077,"uuid":"413124588","full_name":"bbugyi200/hush","owner":"bbugyi200","description":"A Python library that helps manage secrets using tools specified by plugin hooks.","archived":false,"fork":false,"pushed_at":"2021-12-20T03:19:46.000Z","size":898,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-04T02:40:25.267Z","etag":null,"topics":["cc-python","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bbugyi200.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null}},"created_at":"2021-10-03T15:57:43.000Z","updated_at":"2021-12-20T03:19:49.000Z","dependencies_parsed_at":"2022-09-15T13:01:32.685Z","dependency_job_id":null,"html_url":"https://github.com/bbugyi200/hush","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbugyi200%2Fhush","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbugyi200%2Fhush/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbugyi200%2Fhush/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbugyi200%2Fhush/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bbugyi200","download_url":"https://codeload.github.com/bbugyi200/hush/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254544159,"owners_count":22088808,"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","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":["cc-python","python"],"created_at":"2024-11-07T01:31:23.816Z","updated_at":"2025-05-16T14:10:59.262Z","avatar_url":"https://github.com/bbugyi200.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hush\n\n**A Python library that helps manage secrets using tools specified by plugin hooks.**\n\nproject status badges:\n\n[![CI Workflow](https://github.com/bbugyi200/hush/actions/workflows/ci.yml/badge.svg)](https://github.com/bbugyi200/hush/actions/workflows/ci.yml)\n[![Coverage](https://codecov.io/gh/bbugyi200/hush/branch/master/graph/badge.svg)](https://codecov.io/gh/bbugyi200/hush)\n[![Documentation Status](https://readthedocs.org/projects/hush/badge/?version=latest)](https://hush.readthedocs.io/en/latest/?badge=latest)\n[![Package Health](https://snyk.io/advisor/python/python-hush/badge.svg)](https://snyk.io/advisor/python/python-hush)\n\nversion badges:\n\n[![Project Version](https://img.shields.io/pypi/v/python-hush)](https://pypi.org/project/python-hush/)\n[![Python Versions](https://img.shields.io/pypi/pyversions/python-hush)](https://pypi.org/project/python-hush/)\n[![Cookiecutter: cc-python](https://img.shields.io/static/v1?label=cc-python\u0026message=2021.10.03\u0026color=d4aa00\u0026logo=cookiecutter\u0026logoColor=d4aa00)](https://github.com/bbugyi200/cc-python)\n[![Docker: bbugyi/python](https://img.shields.io/static/v1?label=bbugyi%20%2F%20python\u0026message=2021.09.25\u0026color=8ec4ad\u0026logo=docker\u0026logoColor=8ec4ad)](https://github.com/bbugyi200/docker-python)\n\n\n## Installation 🗹\n\nTo install `python-hush` using [pip][9], run the following\ncommands in your terminal:\n\n``` shell\npython3 -m pip install --user python-hush  # install hush\n```\n\nIf you don't have pip installed, this [Python installation guide][10] can guide\nyou through the process.\n\n\n## CLI Usage\n\n\u003c!-- [[[[[kooky.cog\nimport subprocess\n\npopen = subprocess.Popen([\"hush\", \"--help\"], stdout=subprocess.PIPE)\nstdout, _ = popen.communicate()\nprint(\"```\", stdout.decode().strip(), \"```\", sep=\"\\n\")\n]]]]] --\u003e\n```\nusage: hush [-h] [-L [FILE[:LEVEL][@FORMAT]]] [-v] [-n NAMESPACE] [-u USER]\n            key\n\nA Python library that helps manage secrets.\n\nUses the secret management tools (e.g. pass) specified by (internal and\nexternal) plugin hooks.\n\npositional arguments:\n  key                   The key that corresponds with the secret that we wish\n                        to retrieve.\n\noptional arguments:\n  -h, --help            show this help message and exit\n  -L [FILE[:LEVEL][@FORMAT]], --log [FILE[:LEVEL][@FORMAT]]\n                        This option can be used to enable a new logging\n                        handler. FILE should be either a path to a logfile or\n                        one of the following special file types: [1] 'stderr'\n                        to log to standard error (enabled by default), [2]\n                        'stdout' to log to standard out, [3] 'null' to disable\n                        all console (e.g. stderr) handlers, or [4] '+[NAME]'\n                        to choose a default logfile path (where NAME is an\n                        optional basename for the logfile). LEVEL can be any\n                        valid log level (i.e. one of ['CRITICAL', 'DEBUG',\n                        'ERROR', 'INFO', 'TRACE', 'WARNING']) and FORMAT can\n                        be any valid log format (i.e. one of ['color', 'json',\n                        'nocolor']). NOTE: This option can be specified\n                        multiple times and has a default argument of '+'.\n  -n NAMESPACE, --namespace NAMESPACE\n                        The namespace the secret is apart of. This argument\n                        should be a comma-separated list of namespace parts.\n  -u USER, --user USER  Run secret retrieving commands as this user instead of\n                        the current user.\n  -v, --verbose         How verbose should the output be? This option can be\n                        specified multiple times (e.g. -v, -vv, -vvv, ...).\n```\n\u003c!-- [[[[[end]]]]] --\u003e\n\n## Useful Links 🔗\n\n* [API Reference][3]: A developer's reference of the API exposed by this\n  project.\n* [cc-python][4]: The [cookiecutter][5] that was used to generate this project.\n  Changes made to this cookiecutter are periodically synced with this project\n  using [cruft][12].\n* [CHANGELOG.md][2]: We use this file to document all notable changes made to\n  this project.\n* [CONTRIBUTING.md][7]: This document contains guidelines for developers\n  interested in contributing to this project.\n* [Create a New Issue][13]: Create a new GitHub issue for this project.\n* [Documentation][1]: This project's full documentation.\n* [Usage][14]: How do I use Hush?\n* [Writing Plugins][15]: How do I write my own plugins for Hush?\n\n\n[1]: https://hush.readthedocs.io/en/latest\n[2]: https://github.com/bbugyi200/hush/blob/master/CHANGELOG.md\n[3]: https://hush.readthedocs.io/en/latest/modules.html\n[4]: https://github.com/bbugyi200/cc-python\n[5]: https://github.com/cookiecutter/cookiecutter\n[6]: https://docs.readthedocs.io/en/stable/\n[7]: https://github.com/bbugyi200/hush/blob/master/CONTRIBUTING.md\n[8]: https://github.com/bbugyi200/hush\n[9]: https://pip.pypa.io\n[10]: http://docs.python-guide.org/en/latest/starting/installation/\n[11]: https://github.com/pypa/pipx\n[12]: https://github.com/cruft/cruft\n[13]: https://github.com/bbugyi200/hush/issues/new/choose\n[14]: https://hush.readthedocs.io/en/latest/usage.html\n[15]: https://hush.readthedocs.io/en/latest/plugins.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbugyi200%2Fhush","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbbugyi200%2Fhush","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbugyi200%2Fhush/lists"}