Phat Inky (yellow) - Weather in Fahrenheit

I would love the weather in the default weather display to show Fahrenheit instead of Celsius. Not sure what to change to make this work.

You need to add a line similar to this to convert it.
Fahrenheit = (Celsius * 9/5) + 32
Then change the displayed variable so its showing Fahrenheit.
Post your code and I can likely help you sort it out.

i dont know how to post code (completely new here) so i included a link. sorry for the inconvenience.

Ok, I know how to do it when it’s getting it from Pi connected sensor. I have no idea how you change it when your pulling it off of the Internet though. Sorry, I thought it was going to be easier than it appears. This is my best guess.
Try changing this.
weather["temperature"] = int(curr[0].find("span", "summary").text.split()[0][:-1])
To this.
Tc = int(curr[0].find("span", "summary")
weather["temperature"] = (Tc * 9/5) + 32.text.split()[0][:-1])