if i need to get the value of an environment variables inside many files in the project Python (flask framework) should i use os.environ['HOME'] for every use or there is better way?
for example: auth\routes.py
username= os.environ.get("USERNAME")
and in routes under posts posts\routes.py
username= os.environ.get("USERNAME")