diff --git a/README.rst b/README.rst index b9665ec..80382ad 100644 --- a/README.rst +++ b/README.rst @@ -26,11 +26,19 @@ PySecretary is a python secrets library * Free software: MIT license * Documentation: https://pysecretary.readthedocs.io. - -Features +Examples -------- +.. code-block:: python + + import os + from pysecretary import pysecretary + + os.environ["PYSECRETARY"] = "test" + value = pysecretary.get("env://PYSECRETARY") + print(value) -* TODO - vault integration + value = pysecretary.get("env://PATH") + print(value) Credits -------