from tkinter import * import all_constants as c import conversion_rounding as cr class Converter: """ Currency conversion tool (USD to NZD or NZD to USD) """ def __init__(self): """ Currency converter GUI """ self.all_calculations_list = [] self.converter_frame = Frame(padx=10, pady=10) self.converter_frame.grid() self.converter_heading = Label(self.converter_frame, text="Temperature Converter", font=("Arial", "16", "bold") ) self.converter_heading.grid(row=0) instructions = ("Please enter a number below and then press " "one of the buttons to convert it from USD " "to NZD.") self.converter_instructions = Label(self.converter_frame, text=instructions, wraplength=250, width=40, justify="left") self.converter_instructions.grid(row=1) self.converter_entry = Entry(self.converter_frame, font=("Arial", "14") ) self.converter_entry.grid(row=2, padx=10, pady=10) error = "Please enter a number" self.answer_error = Label(self.converter_frame, text=error, fg="#004C99", font=("Arial", "14", "bold")) self.answer_error.grid(row=3) # Conversion, help and history / export buttons self.button_frame = Frame(self.converter_frame) self.button_frame.grid(row=4) # button list (button text | bg colour | command | row | column) button_details_list = [ ["To NZD", "#990099", lambda: self.check_int(c.min_int_usd), 0, 0], ["To USD", "#009900", lambda: self.check_int(c.min_int_nzd), 0, 1], ["Help / Info", "#CC6600", "", 1, 0], ["History / Export", "#004C99", "", 1, 1] ] # List to hold buttons once they have been made self.button_ref_list = [] for item in button_details_list: self.make_button = Button(self.button_frame, text=item[0], bg=item[1], fg="#FFFFFF", font=("Arial", "12", "bold"), width=12, command=item[2]) self.make_button.grid(row=item[3], column=item[4], padx=5, pady=5) self.button_ref_list.append(self.make_button) # retrieve 'history / export' button and disable it at the start self.to_history_button = self.button_ref_list[3] self.to_history_button.config(state=DISABLED) def check_int(self, min_int): """ Checks amount of currency is valid and either invokes calculation function or shows a custom error """ # Retrieve temperature to be converted to_convert = self.converter_entry.get() # reset label and entry box (if we had an error) self.answer_error.config(fg="#004C99", font=("Arial", "13", "bold")) self.converter_entry.config(bg="#FFFFFF") error = f"Enter a number more than / equal to {min_int}" has_error = "no" # checks that amount to be converted is a number above absolute zero try: to_convert = float(to_convert) if to_convert >= min_int: error = "" self.convert(min_int, to_convert) else: error = "Too Low" except ValueError: error = f"Enter a number more than / equal to {min_int}" # display the error of necessary if error != "": self.answer_error.config(text=error, fg="#9C0000") self.converter_entry.config(bg="#F4CCCC") self.converter_entry.delete(0, END) def convert(self, min_temp, to_convert): """ Converts currency and updates answer label. Also stores calculations for Export / History features """ if min_temp == c.min_int_nzd: answer = cr.to_NZD(to_convert) answer_statement = "{to_convert} is ${answer} NZD" else: answer = cr.to_celsius(to_convert) answer_statement = "{to_convert} is ${answer} USD" # enable history export button as soon as we have a valid calculation self.to_history_button.config(state=NORMAL) self.answer_error.config(text=answer_statement) self.all_calculations_list.append(answer_statement) print(self.all_calculations_list) # main routine if __name__ == "__main__": root = Tk() root.title("Temperature Converter") Converter() root.mainloop()