Answers for "how to access env variables 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
0

how to use information from env variables in python

pip3 install python-decouple
Posted by: Guest on January-05-2021

Code answers related to "how to access env variables in python"

Python Answers by Framework

Browse Popular Code Answers by Language