linting, moving files into community subdirectory

This commit is contained in:
Shannon Sands 2025-05-27 15:08:30 +10:00
commit eba7aac72b
15 changed files with 830 additions and 0 deletions

View file

@ -0,0 +1,7 @@
import os
from dotenv import load_dotenv
load_dotenv()
api_key = os.getenv("OPENAI_API_KEY")
print("API Key:", api_key[:10] + "..." if api_key else "Not found")