print env variables

This commit is contained in:
2022-04-23 14:55:26 -04:00
parent 4b8076704d
commit 7e0ef5c11f

View File

@@ -17,6 +17,10 @@ tmdb_api_token = os.environ.get("TMDB_API_TOKEN")
sa_api_token = os.environ.get("SA_API_TOKEN") sa_api_token = os.environ.get("SA_API_TOKEN")
bot_token = os.environ.get("TG_BOT_TOKEN") bot_token = os.environ.get("TG_BOT_TOKEN")
print(tmdb_api_token)
print(sa_api_token)
print(bot_token)
filter_user = os.environ.get("TG_BOT_USER") filter_user = os.environ.get("TG_BOT_USER")
tmdb_url = "https://api.themoviedb.org/3" tmdb_url = "https://api.themoviedb.org/3"