Answers for "how to create env file python"

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
0

create an env in python

if you configured the PATH and PATHEXT variables for your Python installation:

c:\>python -m venv c:\path\to\myenv
Posted by: Guest on April-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language