how to read from .env file python 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')