tg4/Chapitre 3 - Modularité/requettes.py

6 lines
184 B
Python
Raw Normal View History

2023-11-08 10:26:32 +00:00
import requests
import json
url = 'https://api.openweathermap.org/data/2.5/weather'
reponse = requests.get(url+'?q=Paris&appid=0001aa32345d1df47456f64b45f8170b')
print(reponse.json())