Can I get some help with the following issue.
from darksky import forecast
key = 'key_value'
boston = forecast(key, 42.3601, -71.0589)
Obtain the following error:
TypeError Traceback (most recent call last)
in
1 key = 'key_value'
----> 2 boston = forecast(key, 42.3601, -71.0589)
TypeError: 'module' object is not callable
Can I get some help with the following issue.
from darksky import forecast
key = 'key_value'
boston = forecast(key, 42.3601, -71.0589)
Obtain the following error:
TypeError Traceback (most recent call last)
in
1 key = 'key_value'
----> 2 boston = forecast(key, 42.3601, -71.0589)
TypeError: 'module' object is not callable