Answers for "how to set the env variable in python"

1

python set env var

os.environ["MY_ENV"] = "VALUE"
Posted by: Guest on August-30-2021
0

how to use information from env variables in python

from decouple import config

API_USERNAME = config('USER')
API_KEY = config('KEY')
Posted by: Guest on January-05-2021

Code answers related to "how to set the env variable in python"

Python Answers by Framework

Browse Popular Code Answers by Language