I am trying to get weather information from a town, and have 2 items print out from that list. However, when i try to run the code, I get this error:
Traceback (most recent call last):
File "/home/pi/Desktop/python/PyWeather.py" line 4, in <module>
bostonweather = pywapi.get_weather_from_weather_com('UKXX1701', units = 'metric')
File "/home/pi/Desktop/python/pywapi.py" line 239, in get_weather_from_weather_com
'wind')[0].getElementsByTagName(tag2)[0].firstChild.data
AtrributeError: 'NoneType' object has no attribute 'data'
This is my code:
import pywapi
import string
bostonweather = pywapi.get_weather_from_weather_com('UKXX1701', 'metric')
print ("In Boston, Lincolnshire it is currently: ") + string.ascii_lowercase(bostonweather['current_conditions']['text'] + (" and ") + string.ascii_lowercase(bostonweather['current_conditions']['temperature'] + ("C.\n"))
//EDIT
I've just reran my program and it just threw a "TypeError: 'str' object is not callable" error instead.
Error message:
Traceback (most recent call last):
File "/home/pi/Desktop/python/PyWeather.py" line 5, in <module>
print ("In Boston, Lincolnshire it is currently: ") + string.ascii_lowercase(bostonweather['current_conditions']['text'] + (" and ") + string.ascii_lowercase(bostonweather['current_conditions']['temperature'] + ("C.\n"))
TypeError: 'str' object is not callable
Any clue on what to do?
Try to make all strings before you print