Berlin code example
Example 1: Berlin
Run API Requesthttp://api.weatherstack.com/current
? access_key = YOUR_ACCESS_KEY
& query = New York
Example 2: Berlin
Run API Requesthttp://api.weatherstack.com/current
? access_key = YOUR_ACCESS_KEY
& query = Berlin
Example 3: Berlin
import requests
params = {
'access_key': 'YOUR_ACCESS_KEY',
'query': 'Berlin'
}
api_result = requests.get('https://api.weatherstack.com/current', params)
api_response = api_result.json()
print(u'Current temperature in %s is %d℃' % (api_response['location']['name'], api_response['current']['temperature']))