When I try to do a simple query using wolfram alpha I am getting these errors.
This is my code:
import wolframalpha
input = raw_input("Question: ")
app_id = "**************"
client = wolframalpha.Client(app_id)
res = client.query(input)
answer = next(res.results).text
print answer
The error is :
Can you help me figure this one?