aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/seasons/evergreen/space.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/bot/seasons/evergreen/space.py b/bot/seasons/evergreen/space.py
index c573e995..a4f60041 100644
--- a/bot/seasons/evergreen/space.py
+++ b/bot/seasons/evergreen/space.py
@@ -7,6 +7,16 @@ from bot.constants import Tokens
logger = logging.getLogger(__name__)
+# NASA API base URL
+BASE_URL = "https://api.nasa.gov/"
+
+# Default Parameters:
+# .apod command default request parameters
+APOD_PARAMS = {
+ "api_key": Tokens.nasa,
+ "hd": True
+}
+
class Space(Cog):
"""Space Cog contains commands, that show images, facts or other information about space."""