from tkinter import * import requests import json response = requests.get("https://api.frankfurter.dev/v1/latest?base=USD&symbols=NZD") j_response = json.loads(response.text) usd_to_nzd = j_response["rates"]["NZD"] response = requests.get("https://api.frankfurter.dev/v1/latest?base=NZD&symbols=USD") j_response = json.loads(response.text) nzd_to_usd = j_response["rates"]["USD"] print(f"USD TO NZD: {usd_to_nzd}") print(f"NZD TO USD: {nzd_to_usd}") class Converter: """ Temperature conversion tool (C to F or F to C) """ def __init__(self): """ Temperature converter GUI """ self.all_calculations_list = [] self.temp_frame = Frame(padx=10, pady=10) self.temp_frame.grid() self.temp_heading = Label(self.temp_frame, text="Currency Converter", font=("Arial", "16", "bold") ) self.temp_heading.grid(row=0) instructions = ("Please enter a temperature below and then press " "one of the buttons to convert it from centigrade " "to Fahrenheit.") self.temp_instructions = Label(self.temp_frame, text=instructions, wraplength=250, width=40, justify="left") self.temp_instructions.grid(row=1) self.temp_entry = Entry(self.temp_frame, font=("Arial", "14") ) self.temp_entry.grid(row=2, padx=10, pady=10) error = "Please enter a number" self.answer_error = Label(self.temp_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.temp_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_temp(usd_to_nzd), 0, 0], ["To USD", "#009900", lambda:self.check_temp(nzd_to_usd), 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_temp(self, currency_modifier): """ Checks temperature is valid and either invokes calculations or shows an error """ # Retrieve amount to be converted to_convert = self.temp_entry.get() # Reset label and entry box self.answer_error.config(fg="#004C99", font=("Arial", "13", "bold")) self.temp_entry.config(bg="#FFFFFF") error = f"Enter a number more than 0" has_errors = "no" # checks that the amount to be converted is a number above absolute zero try: to_convert = float(to_convert) if to_convert > 0: # print("You are OK") error = "" self.convert(currency_modifier, to_convert) else: has_errors = "yes" except ValueError: has_errors = "yes" if has_errors == "yes": self.answer_error.config(text=error, fg="#9C0000", font=("Arial", "10", "bold")) self.temp_entry.config(bg="#F4CCCC") self.temp_entry.delete(0, END) def convert(self, min_temp, to_convert): """ Converts temperature from Celsius to Fahrenheit, or vice versa """ if min_temp == c.ABS_ZERO_CELSIUS: answer = cr.to_fahrenheit(to_convert) answer_statement = f"${to_convert} NZD is ${answer} USD" else: answer = cr.to_celsius(to_convert) answer_statement = f"${to_convert} USD is ${answer} NZD" # enable history export button, because we have history to export now 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) @staticmethod def round_ans(self, currency_modifier, val): """ Rounds numbers to 1 dp. """ val = val * currency_modifier var_rounded = (val * 2 + 1) // 2 return "{:.0f}".format(var_rounded) # main routine if __name__ == "__main__": root = Tk() root.title("Temperature Converter") Converter() root.mainloop()