imednet.config module
The imednet.config
module provides a simple dataclass for SDK credentials
and a helper to populate it from environment variables.
Example
import os
from imednet.config import load_config
os.environ["IMEDNET_API_KEY"] = "A"
os.environ["IMEDNET_SECURITY_KEY"] = "B"
config = load_config()
assert config.api_key == "A"