Spaces:
Running
Running
File size: 241 Bytes
9433533 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
from dotenv import dotenv_values, find_dotenv
__env_values__ = dotenv_values(
dotenv_path=find_dotenv(".env", raise_error_if_not_found=False)
)
def _load_value(key: str):
return __env_values__.get(key) or os.getenv(key)
|