Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Reading the .env environment file in Python

  • .env file in the same folder where the program is.

{% embed include file="src/examples/os/.env)

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