SEO / app.py
AnalysisWithMSR's picture
Update app.py
2cb5449 verified
raw
history blame
252 Bytes
import os
# Fetch the API key from the environment
youtube_api_key = os.getenv("YOUTUBE_API_KEY")
# Check if the key is set and print accordingly
if youtube_api_key:
print("YOUTUBE_API_KEY is set.")
else:
print("YOUTUBE_API_KEY is not set.")