Ensure you you have the private key file in the directory of your project if you intend to use it. Override the config to KeyManager if you have changed its name.
from auth.config import KMConfigKMConfig["PKEY_FILE"] = "./your/private/key.pem"kvm = KeyManager()...etc
You can install Auth as a package now just
pip install ./path/to/Auth
Ensure you you have the private key file in the directory of your project if you intend to use it. Override the config to KeyManager if you have changed its name.
from auth.config import KMConfig
KMConfig["PKEY_FILE"] = "./your/private/key.pem"
kvm = KeyManager()
...etc