mirror of
https://github.com/Floriansylvain/FDJ-SLAYER.git
synced 2026-08-19 19:53:19 +02:00
13 lines
444 B
Python
13 lines
444 B
Python
NUMBER_OF_DRAWS = 100
|
|
NUMBER_OF_NUMBERS = 5
|
|
MAX_NUMBER = 50
|
|
NUMBER_OF_STARS = 2
|
|
MAX_STAR = 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"
|
|
]
|