python-dotenv is redirecting print to debug console code example
Example: dotenv python
# Install dotenv via:
pip3 install python-dotenv
# Load .env file using:
from dotenv import load_dotenv
load_dotenv()
# Use the variable with:
import os
os.getenv("ACCESS_KEY")