Answers for "python dotenv package install"

21

dotenv python

# Install dotenv via:
pip3 install python-dotenv

# Load .env file using:
from dotenv import load_dotenv
load_dotenv()

# Use the variable with:
import os
os.getenv("ACCESS_KEY")
Posted by: Guest on May-09-2020
3

install dotenv

# For python users only
pip install python-dotenv
Posted by: Guest on December-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language