Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hvac/hvac
:lock: Python 3.X client for HashiCorp Vault
https://github.com/hvac/hvac
api client hacktoberfest hashicorp python vault
Last synced: 24 days ago
JSON representation
:lock: Python 3.X client for HashiCorp Vault
- Host: GitHub
- URL: https://github.com/hvac/hvac
- Owner: hvac
- License: apache-2.0
- Created: 2015-05-05T21:56:50.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T19:24:00.000Z (7 months ago)
- Last Synced: 2024-04-14T04:23:54.565Z (7 months ago)
- Topics: api, client, hacktoberfest, hashicorp, python, vault
- Language: Python
- Homepage: https://python-hvac.org
- Size: 2.62 MB
- Stars: 1,179
- Watchers: 25
- Forks: 372
- Open Issues: 147
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- best-of-web-python - GitHub - 30% open · ⏱️ 05.06.2024): (Third-party Web APIs)
README
# hvac
![Header image](https://raw.githubusercontent.com/hvac/hvac/main/docs/_static/hvac_logo_800px.png)
[HashiCorp](https://hashicorp.com/) [Vault](https://www.vaultproject.io) API client for Python 3.x
[![Build](https://github.com/hvac/hvac/actions/workflows/build-test.yml/badge.svg)](https://github.com/hvac/hvac/actions/workflows/build-test.yml)
[![Lint](https://github.com/hvac/hvac/actions/workflows/lint-and-test.yml/badge.svg)](https://github.com/hvac/hvac/actions/workflows/lint-and-test.yml)
[![codecov](https://codecov.io/gh/hvac/hvac/branch/main/graph/badge.svg)](https://codecov.io/gh/hvac/hvac)
[![Documentation Status](https://readthedocs.org/projects/hvac/badge/)](https://hvac.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/hvac.svg)](https://badge.fury.io/py/hvac)
[![Twitter - @python_hvac](https://img.shields.io/twitter/follow/python_hvac.svg?label=Twitter%20-%20@python_hvac&style=social?style=plastic)](https://twitter.com/python_hvac)
[![Gitter chat](https://badges.gitter.im/hvac/community.png)](https://gitter.im/hvac/community)Tested against the latest release, HEAD ref, and 3 previous minor versions (counting back from the latest release) of Vault.
Current official support covers Vault v1.4.7 or later.> **NOTE:** Support for EOL Python versions will be dropped at the end of 2022. Starting in 2023, hvac will track
> with the CPython EOL dates.## Installation
```console
pip install hvac
```If you would like to be able to return parsed HCL data as a Python dict for methods that support it:
```console
pip install "hvac[parser]"
```## Documentation
Additional documentation for this module available at: [hvac.readthedocs.io](https://hvac.readthedocs.io/en/stable/usage/index.html):
* [Getting Started](https://hvac.readthedocs.io/en/stable/overview.html#getting-started)
* [Usage](https://hvac.readthedocs.io/en/stable/usage/index.html)
* [Advanced Usage](https://hvac.readthedocs.io/en/stable/advanced_usage.html)
* [Source Reference / Autodoc](https://hvac.readthedocs.io/en/stable/source/index.html)
* [Contributing](https://hvac.readthedocs.io/en/stable/contributing.html)
* [Changelog](https://hvac.readthedocs.io/en/stable/changelog.html)