Metadata-Version: 2.1
Name: how-is-the-weather
Version: 0.3.0
Summary: A simple tool to describe weather conditions
Home-page: https://github.com/jimbosimbo/howstheweather
License: MIT
Author: Jim Jimbo
Author-email: jim377893@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: requests (>=2.31.0,<3.0.0)
Description-Content-Type: text/markdown

# How is the Weather?

A simple Python command-line application to check the weather. The application fetches weather data using the OpenWeatherMap API and categorizes the temperature into "nice and warm", "mild", or "cold!" based on the temperature.

## Features

- Fetches real-time weather data from OpenWeatherMap.
- Provides a simple command-line interface to interact with.
- Categorizes weather conditions based on temperature.

## Prerequisites

Before you begin, ensure you have met the following requirements:
- You have installed Python 3.6 or above.
- You have a virtual environment set up in your project directory.
- You have obtained an API key from [OpenWeatherMap](https://openweathermap.org/api).

## Installing How is the Weather?

To install How is the Weather?, follow these steps:

Linux and macOS:
```bash
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```
