chellygel / AnimeKetchup

Some anime you want to watch? How fast can you catch up?
1 stars 0 forks source link

Split Certain Functions #17

Open leepatrickworrall opened 1 year ago

leepatrickworrall commented 1 year ago

To have the main.py solely be for our prompts, and to plan forward for the inevitable implementation of Tkinter and a GUI, we don't want any calculation/algorithm within this file. Instead, we should split this up into a utils.py file.

An example of this would be our function for printing the watch schedule.

def pretty_print_watch_schedule():
    # Creates a table view.
    # Draws pretty lines around the terminal output.
leepatrickworrall commented 1 year ago

Added onto this, we want to pull get_date() into this utils.py file.