Metadata-Version: 2.1
Name: cli-weather-app
Version: 0.1.0
Summary: A CLI app used to check the current weather condition of cities around the world
Home-page: https://github.com/smith2eric/weather-app
Author: Eric Alaribe
Author-email: ericsmithsonian2@gmail.com
License: MIT
Project-URL: Tutorial, https://realpython.com/build-a-python-weather-app-cli
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# WEATHER CLI APP

This weather CLI app was built using standard Python modules and
OpenWeatherMap API to retrieve weather conditions of cities
around the world.

It takes in city as an argument and the temperature can be defined
at the start of the program.

## INSTALLATION

The weather app can be installed via Pip
```sh
pip install weather-app-cli
```

## USAGE

To run this app, ensure Python 3.5+ is available on your system.

```sh
python3 -m weather {city} {-i}
```
where {city} is the name of the city you would like to check
and {-i} is used to set temperature to Celsius or Fahrenheit.

# __REFERENCE__
This app was constructed in relation to a [tutorial](https://realpython.com/build-a-python-weather-app-cli) on RealPython.
Few modifications were made based on the author's preference😉.

# AUTHOR
Project was made with ❤ by [Eric Alaribe](https://github.com/smith2eric)

