added emojis
Browse files
app.py
CHANGED
|
@@ -46,28 +46,28 @@ with col1:
|
|
| 46 |
|
| 47 |
|
| 48 |
custom_metric_box(
|
| 49 |
-
label="Temperature",
|
| 50 |
value=f"{round(today['mean_temp'] * 0.1)} °C",
|
| 51 |
)
|
| 52 |
custom_metric_box(
|
| 53 |
-
label="Humidity",
|
| 54 |
value=f"{round(today['humidity'])} %",
|
| 55 |
)
|
| 56 |
custom_metric_box(
|
| 57 |
-
label="Pressure",
|
| 58 |
value=f"{round(today['pressure'] * 0.1)} hPa",
|
| 59 |
)
|
| 60 |
|
| 61 |
custom_metric_box(
|
| 62 |
-
label="Precipitation",
|
| 63 |
value=f"{round(today['percipitation'] * 0.1)} mm",
|
| 64 |
)
|
| 65 |
custom_metric_box(
|
| 66 |
-
label="Solar Radiation",
|
| 67 |
value=f"{round(today['global_radiation'])} J/m²",
|
| 68 |
)
|
| 69 |
custom_metric_box(
|
| 70 |
-
label="Wind Speed",
|
| 71 |
value=f"{round(today['wind_speed'] * 0.1, 1)} m/s",
|
| 72 |
)
|
| 73 |
|
|
|
|
| 46 |
|
| 47 |
|
| 48 |
custom_metric_box(
|
| 49 |
+
label="🥵 Temperature",
|
| 50 |
value=f"{round(today['mean_temp'] * 0.1)} °C",
|
| 51 |
)
|
| 52 |
custom_metric_box(
|
| 53 |
+
label="💧 Humidity",
|
| 54 |
value=f"{round(today['humidity'])} %",
|
| 55 |
)
|
| 56 |
custom_metric_box(
|
| 57 |
+
label="🪨 Pressure",
|
| 58 |
value=f"{round(today['pressure'] * 0.1)} hPa",
|
| 59 |
)
|
| 60 |
|
| 61 |
custom_metric_box(
|
| 62 |
+
label="🌧️ Precipitation",
|
| 63 |
value=f"{round(today['percipitation'] * 0.1)} mm",
|
| 64 |
)
|
| 65 |
custom_metric_box(
|
| 66 |
+
label="🌤️ Solar Radiation",
|
| 67 |
value=f"{round(today['global_radiation'])} J/m²",
|
| 68 |
)
|
| 69 |
custom_metric_box(
|
| 70 |
+
label="🌪️ Wind Speed",
|
| 71 |
value=f"{round(today['wind_speed'] * 0.1, 1)} m/s",
|
| 72 |
)
|
| 73 |
|