weathr 1.0.0

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
pub mod client;
pub mod normalizer;
pub mod open_meteo;
pub mod provider;
pub mod types;

pub use client::WeatherClient;
pub use open_meteo::OpenMeteoProvider;
pub use types::{
    RainIntensity, SnowIntensity, WeatherCondition, WeatherData, WeatherLocation, WeatherUnits,
};