from dotenv import load_dotenv, find_dotenv
_ = load_dotenv(find_dotenv()) # read local .env file
You don’t need to install anything in the Coursera environment.
To install dotenv locally you need to run the following:
pip install python-dotenv
from dotenv import load_dotenv, find_dotenv
_ = load_dotenv(find_dotenv()) # read local .env file
You don’t need to install anything in the Coursera environment.
To install dotenv locally you need to run the following:
pip install python-dotenv