openweathermap_client 0.7.0

A client for querying the weather from the free OpenWeatherMap API.
Documentation
#![deny(clippy::pedantic, clippy::cargo)]
#![warn(clippy::perf, clippy::complexity, clippy::multiple_crate_versions)]
#![allow(clippy::module_name_repetitions, clippy::must_use_candidate)]

//!
//! ## Get An API Key
//!
//! To obtain an API key, go to [https://openweathermap.org/home/sign_in](https://openweathermap.org/home/sign_in) to
//! sign in or create an account. Once logged in, select your user name from the top-right menu bar and then
//! **My API Keys**. Use the **Create key** form to create a new key.
//!
//! ## Example #1
//!
//! ```rust
#![doc = include_str!("../examples/get_weather_summary_in_paris_in_french.rs")]
//! ```
//!
//! ## Example #2
//!
//! ```rust
#![doc = include_str!("../examples/get_multiple_readings.rs")]
//! ```

mod client;
pub mod error;
pub mod models;
mod options;
mod query;

pub use client::Client;
pub use options::ClientOptions;
pub use query::Query;