Skip to content

Files

Latest commit

d0292cb · Mar 8, 2021

History

History
49 lines (31 loc) · 1.26 KB

README.rst

File metadata and controls

49 lines (31 loc) · 1.26 KB

PySecretary

Documentation Status Updates

PySecretary is a python secrets library

Examples

import os
from pysecretary import pysecretary

os.environ["PYSECRETARY"] = "test"
value = pysecretary.get("env://PYSECRETARY")
print(value)

value = pysecretary.get("env://PATH")
print(value)

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.