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.
- Fetches real-time weather data from OpenWeatherMap.
- Provides a simple command-line interface to interact with.
- Categorizes weather conditions based on temperature.
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.
To install How is the Weather?, follow these steps:
Linux and macOS:
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt