weathr 1.1.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
12
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::{
    FogIntensity, RainIntensity, SnowIntensity, WeatherCondition, WeatherConditions, WeatherData,
    WeatherLocation, WeatherUnits,
};