Python how to use environment variables code example
Example 1: get environment variables python
import os
os.environ['API_USER'] = 'username'
os.environ['API_PASSWORD'] = 'secret'
USER = os.getenv('API_USER')
PASSWORD = os.environ.get('API_PASSWORD')
FOO = os.getenv('FOO')
BAR = os.environ.get('BAR')
BAZ = os.environ['BAZ']
Example 2: python create environment variable
import os
os.environ['variable_name'] = 'variable_value'
Example 3: how to use information from env variables in python
$ pip install python-decouple
Example 4: how to use information from env variables in python
from decouple import config
API_USERNAME = config('USER')
API_KEY = config('KEY')