https://github.com/machu-gwu/pysecret-project
Load your secret information nicely and securely.
https://github.com/machu-gwu/pysecret-project
aws environment-variable json parameter-store secret secret-manager
Last synced: about 1 month ago
JSON representation
Load your secret information nicely and securely.
- Host: GitHub
- URL: https://github.com/machu-gwu/pysecret-project
- Owner: MacHu-GWU
- License: mit
- Created: 2019-04-09T15:10:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-18T15:16:10.000Z (almost 2 years ago)
- Last Synced: 2025-09-01T23:25:08.823Z (about 1 month ago)
- Topics: aws, environment-variable, json, parameter-store, secret, secret-manager
- Language: Python
- Homepage:
- Size: 158 KB
- Stars: 12
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
.. image:: https://readthedocs.org/projects/pysecret/badge/?version=latest
:target: https://pysecret.readthedocs.io/index.html
:alt: Documentation Status.. image:: https://github.com/MacHu-GWU/pysecret-project/workflows/CI/badge.svg
:target: https://github.com/MacHu-GWU/pysecret-project/actions?query=workflow:CI.. image:: https://codecov.io/gh/MacHu-GWU/pysecret-project/branch/master/graph/badge.svg
:target: https://codecov.io/gh/MacHu-GWU/pysecret-project.. image:: https://img.shields.io/pypi/v/pysecret.svg
:target: https://pypi.python.org/pypi/pysecret.. image:: https://img.shields.io/pypi/l/pysecret.svg
:target: https://pypi.python.org/pypi/pysecret.. image:: https://img.shields.io/pypi/pyversions/pysecret.svg
:target: https://pypi.python.org/pypi/pysecret.. image:: https://img.shields.io/pypi/dm/pysecret.svg
.. image:: https://img.shields.io/badge/Release_History!--None.svg?style=social
:target: https://github.com/MacHu-GWU/pysecret-project/blob/main/release-history.rst.. image:: https://img.shields.io/badge/STAR_Me_on_GitHub!--None.svg?style=social
:target: https://github.com/MacHu-GWU/pysecret-project------
.. image:: https://img.shields.io/badge/Link-Document-green.svg
:target: https://pysecret.readthedocs.io/index.html.. image:: https://img.shields.io/badge/Link-API-blue.svg
:target: https://pysecret.readthedocs.io/py-modindex.html.. image:: https://img.shields.io/badge/Link-Source_Code-blue.svg
:target: https://pysecret.readthedocs.io/py-modindex.html.. image:: https://img.shields.io/badge/Link-GitHub-blue.svg
:target: https://github.com/MacHu-GWU/pysecret-project.. image:: https://img.shields.io/badge/Link-Submit_Issue-blue.svg
:target: https://github.com/MacHu-GWU/pysecret-project/issues.. image:: https://img.shields.io/badge/Link-Request_Feature-blue.svg
:target: https://github.com/MacHu-GWU/pysecret-project/issues.. image:: https://img.shields.io/badge/Link-Download-blue.svg
:target: https://pypi.org/pypi/pysecret#filesWelcome to ``pysecret`` Documentation
==============================================================================.. contents::
:class: this-will-duplicate-information-and-it-is-still-useful-here
:local:``pysecret`` is a library to ease your life dealing with secret information.
For example, **if you have a database connection information, so you should not include it in your source code**. ``pysecret`` is the library that provides several options to deploy or access your secret data securely.
**Features**
1. access secret in `Environment Variable `_.
2. access secret `in shell script `_.
3. access secret `in json file from Python `_.
4. deploy your secret to `AWS Parameter Store `_ and use it in your application code, see `AWS Parameter Store example `_.
5. deploy your secret to `AWS Secret Manager `_ and use it in your application code, see `AWS Secret Manager example `_.
6. use AWS Key Management Service to encrypt or decrypt your data, see `AWS KMS example `_.Install
------------------------------------------------------------------------------``pysecret`` is released on PyPI, so all you need is:
.. code-block:: console
$ pip install pysecret
To upgrade to latest version:
.. code-block:: console
$ pip install --upgrade pysecret