AtrributeError: 'NoneType' object has no attribute 'data' & TypeError: 'str' object is not callable

493 Views Asked by At

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?

2

There are 2 best solutions below

2
On BEST ANSWER

Try to make all strings before you print

import pywapi

bostonweather = pywapi.get_weather_from_weather_com('UKXX1701', 'metric')
print ("In Boston, Lincolnshire it is currently: " + str(bostonweather['current_conditions']['text']).lower() + " and " + str(bostonweather['current_conditions']['temperature']).lower())
1
On

You're trying to call string.lowercase(blabla) and that's where you get TypeError

You should do

print "In Boston, Lincolnshire it is currently: " + bostonweather['current_conditions']['text'].lower() + " and " + bostonweather['current_conditions']['temperature'].lower() + ("C.\n")