Add requirements.txt

This commit is contained in:
Shav Kinderlehrer 2024-06-26 11:06:47 -04:00
parent a744d7c7e8
commit 8886bbfe86
5 changed files with 5 additions and 0 deletions

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
openai==1.35.4
Requests==2.32.3
spotipy==2.24.0

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -51,6 +51,8 @@ class Clock:
hour = str(time.hour) hour = str(time.hour)
if time.hour > 12: if time.hour > 12:
hour = str(time.hour - 12) hour = str(time.hour - 12)
elif time.hour == 0:
hour = "12"
hour = self.serialize_time_part(hour) hour = self.serialize_time_part(hour)
minute = str(time.minute) minute = str(time.minute)
if time.minute < 10: if time.minute < 10: