weathr 1.2.1

A terminal-based ASCII weather application with animated scenes driven by real-time weather data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod client;
pub mod normalizer;
pub mod open_meteo;
pub mod provider;
pub mod types;
pub mod units;

pub use client::WeatherClient;
pub use open_meteo::OpenMeteoProvider;
pub use types::{
    FogIntensity, RainIntensity, SnowIntensity, WeatherCondition, WeatherConditions, WeatherData,
    WeatherLocation, WeatherUnits,
};
pub use units::{format_precipitation, format_temperature, format_wind_speed};