Reading the .env environment file in Python
.envfile in the same folder where the program is.
SOME_THING=some value
import os
print(os.environ.get('MYNAME'))
print(os.getenv('MYNAME'))
pip install python-dotenv
python examples/os/read_env.py
SOME_THING=other python examples/os/read_env.py