Metadata-Version: 2.1
Name: k2vault
Version: 0.1.0
Summary: A reusable Python module to utilize Azure KeyVaults
Home-page: https://github.com/k2digidata/k2Vault
Author-email: h.davoodi@k2-systems.de
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# k2Vault
From here we create the k2Vault Package for our Python code

# Instructions on How-To-Use

The Developer should send the name of their secret as a Parameter to the Library as follows:

    k2vault('[name of the secret]')

and then the return Value from the library is a string so:

    Encrypted_secret = k2vault('[name of the secret]')

mylib/
├── mylib/
│   └── __init__.py
├── setup.py
├── README.md
└── .github/
    └── workflows/
        └── publish.yml
