55. Secrets and Environment Integration
Configuration and secrets should not be hardcoded.
Example
import os
API_KEY = os.getenv("PYDO_API_KEY")
if not API_KEY:
print("Warning: No API key found.")
✅ Lesson: Store credentials in environment variables, not code or JSON files.