From f97e45c91aa30eaf50acc44e35e18539bb65ee23 Mon Sep 17 00:00:00 2001 From: rintyuu Date: Thu, 22 Aug 2024 21:49:16 -0700 Subject: [PATCH] Very small fix added \n to add more space between Artists and Album fields --- main.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 7c69add..93a0ca7 100644 --- a/main.py +++ b/main.py @@ -2,8 +2,11 @@ import os import requests import spotipy from spotipy.oauth2 import SpotifyOAuth +import time from dotenv import load_dotenv +current_epoch = time.time() + # Load environment variables from .env file load_dotenv() @@ -51,7 +54,7 @@ if response is not None and response.get('is_playing', False): context_url = context['external_urls']['spotify'] # Format the message - description = f"**Artists**\n{artists}\n**Album**\n{album_name}\n\n[Listen on Spotify]({track_url})" + description = f"**Artists**\n{artists}\n\n**Album**\n{album_name}\n\n\n[Listen on Spotify]({track_url})" if context_name and context_url: description += f" | [{context_name}]({context_url})" description += f" | [visit the source](https://git.rintyuu.dev/rintyuu/discord-nowplaying)" @@ -66,6 +69,8 @@ if response is not None and response.get('is_playing', False): ] } + print(f"Current Epoch Time: {current_epoch:.0f}") + # Send the message to the Discord webhook response = requests.post(discord_webhook_url, json=message)