[](https://crates.io/crates/umbrella)
[](https://docs.rs/umbrella)



# umbrella
A simple weather reporting tool in Rust, using the Weatherstack API.
## Installation
```sh
cargo install umbrella
```
## Usage
First, create a [Weatherstack account](https://weatherstack.com/signup/free), and obtain your API key.
```sh
export WEATHERSTACK_API_KEY=xxx
umbrella London, UK
```
```txt
Sunny 4.0ºC (London, United Kingdom)
```
## Units
To report temperature in Fahrenheit, use the `--fahrenheit` (or `-f`) flag:
```sh
umbrella --fahrenheit Los Angeles, USA
```
```txt
Fog 50.0ºF (Los Angeles, United States of America)
```