diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..b7091b6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +openai==1.35.4 +Requests==2.32.3 +spotipy==2.24.0 diff --git a/src/__pycache__/clock.cpython-311.pyc b/src/__pycache__/clock.cpython-311.pyc new file mode 100644 index 0000000..42ddf75 Binary files /dev/null and b/src/__pycache__/clock.cpython-311.pyc differ diff --git a/src/__pycache__/spotify.cpython-311.pyc b/src/__pycache__/spotify.cpython-311.pyc new file mode 100644 index 0000000..c6da476 Binary files /dev/null and b/src/__pycache__/spotify.cpython-311.pyc differ diff --git a/src/__pycache__/weather.cpython-311.pyc b/src/__pycache__/weather.cpython-311.pyc new file mode 100644 index 0000000..96fd1f4 Binary files /dev/null and b/src/__pycache__/weather.cpython-311.pyc differ diff --git a/src/clock.py b/src/clock.py index 9359509..2df8ae7 100644 --- a/src/clock.py +++ b/src/clock.py @@ -51,6 +51,8 @@ class Clock: hour = str(time.hour) if time.hour > 12: hour = str(time.hour - 12) + elif time.hour == 0: + hour = "12" hour = self.serialize_time_part(hour) minute = str(time.minute) if time.minute < 10: