71 lines
3.2 KiB
Plaintext
71 lines
3.2 KiB
Plaintext
Metadata-Version: 2.1
|
|
Name: hvac
|
|
Version: 2.3.0
|
|
Summary: HashiCorp Vault API client
|
|
Home-page: https://github.com/hvac/hvac
|
|
License: Apache-2.0
|
|
Keywords: hashicorp,vault
|
|
Author: Ian Unruh
|
|
Author-email: ianunruh@gmail.com
|
|
Maintainer: Brian Scholer
|
|
Requires-Python: >=3.8,<4.0
|
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.8
|
|
Classifier: Programming Language :: Python :: 3.9
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
Classifier: Programming Language :: Python :: 3.12
|
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
Provides-Extra: parser
|
|
Requires-Dist: pyhcl (>=0.4.4,<0.5.0) ; extra == "parser"
|
|
Requires-Dist: requests (>=2.27.1,<3.0.0)
|
|
Project-URL: Documentation, https://hvac.readthedocs.io/en/stable/overview.html
|
|
Project-URL: Repository, https://github.com/hvac/hvac
|
|
Description-Content-Type: text/markdown
|
|
|
|
# hvac
|
|
|
|

|
|
|
|
[HashiCorp](https://hashicorp.com/) [Vault](https://www.vaultproject.io) API client for Python 3.x
|
|
|
|
[](https://github.com/hvac/hvac/actions/workflows/build-test.yml)
|
|
[](https://github.com/hvac/hvac/actions/workflows/lint-and-test.yml)
|
|
[](https://codecov.io/gh/hvac/hvac)
|
|
[](https://hvac.readthedocs.io/en/latest/?badge=latest)
|
|
[](https://badge.fury.io/py/hvac)
|
|
[](https://twitter.com/python_hvac)
|
|
[](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)
|
|
|