A command line application for displaying weather details, written in Python.
Openweathermap-cli is on PyPi so it can be installed with pip.
$ pip install openweathermap-cli
To upgrade use the -U flag.
$ pip install -U openweathermap-cli
To begin you will need to add your API key. If you do not have an API key you can get one free from Open Weather Map.
$ weather api YOUR00API00KEY00GOES00HERE
Usage:
weather
weather week
weather -h | --help
weather --version
Get today's weather forecast
$ weather
Get the week's weather forecast
$ weather week
Get today's weather details
$ weather
+-----------------------+------------+
| City of Westminster | |
|-----------------------+------------|
| Temperature | 10.45 |
| Temp Max | 12.0 |
| Temp Min | 9.0 |
| Summary | Rain |
| Detail | light rain |
| Sunrise | 07:05:26 |
| Sunset | 17:23:52 |
+-----------------------+------------+
This project is licensed under the MIT License