mirror of
https://github.com/michivonah/python.git
synced 2025-12-22 20:46:29 +01:00
11 lines
No EOL
220 B
Python
11 lines
No EOL
220 B
Python
# Envirommental variables
|
|
# Michi von Ah - October 2023
|
|
|
|
# Import required modules
|
|
import os
|
|
from dotenv import load_dotenv
|
|
|
|
# Load variables from .env file
|
|
load_dotenv()
|
|
|
|
os.getenv('TEST') # Example output: Hello World! |