Jak wykorzystywać informacje ze zmiennych Env w Python
from decouple import config
API_USERNAME = config('USER')
API_KEY = config('KEY')
Selfish Salamander
from decouple import config
API_USERNAME = config('USER')
API_KEY = config('KEY')