PySecretary is a python secrets library
- Free software: MIT license
- Documentation: https://pysecretary.readthedocs.io.
import os
from pysecretary import pysecretary
os.environ["PYSECRETARY"] = "test"
value = pysecretary.get("env://PYSECRETARY")
print(value)
value = pysecretary.get("env://PATH")
print(value)
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.