mirror of
https://github.com/Floriansylvain/FDJ-SLAYER.git
synced 2026-08-19 19:53:19 +02:00
13 lines
440 B
Python
13 lines
440 B
Python
NOMBRE_TIRAGE = 100
|
|
NOMBRE_NUMEROS = 5
|
|
MAX_NUMERO = 50
|
|
NOMBRE_ETOILES = 2
|
|
MAX_ETOILE = 12
|
|
OPENMETEO_API_URL = "https://api.open-meteo.com/v1/forecast"
|
|
OPENMETEO_HOURLY_PARAMS = [
|
|
"temperature_2m", "relative_humidity_2m", "wind_speed_10m",
|
|
"visibility", "precipitation", "cloud_cover", "pressure_msl",
|
|
"surface_pressure", "wind_direction_10m", "shortwave_radiation",
|
|
"direct_radiation", "diffuse_radiation", "dew_point_2m"
|
|
]
|