set env variable terminal and access in python script code example
Example 1: how to use information from env variables in python
$ pip install python-decouple
Example 2: how to use information from env variables in python
from decouple import config
API_USERNAME = config('USER')
API_KEY = config('KEY')