- https://pybit.es/articles/how-to-handle-environment-variables-in-python/
- https://pypi.org/project/python-decouple/#python-decouple-strict-separation-of-settings-from-code
- https://pypi.org/project/python-dotenv/#load-configuration-without-altering-the-environment
import os
from dotenv import load_dotenv
print(os.environ)
load_dotenv()
print(os.environ)