Metadata-Version: 2.4
Name: weather-app-mannyyebz
Version: 0.1.8
Summary: A Python package for fetching real-time weather data using the OpenWeatherMap API
Requires-Python: >=3.13
Requires-Dist: python-dotenv>=1.2.2
Requires-Dist: requests>=2.33.1
Description-Content-Type: text/markdown

# 🌤️ Weather App

**A production-ready Python CLI for real-time weather data**  
Clean architecture • PyPI package • CLI tool

![PyPI](https://img.shields.io/pypi/v/weather-app-mannyyebz)
![Python](https://img.shields.io/pypi/pyversions/weather-app-mannyyebz)
![GitHub Stars](https://img.shields.io/github/stars/mannyyebz/weather-app)
![Status](https://img.shields.io/badge/status-production--ready-brightgreen)

---

## 🚀 Installation

```bash
pip install weather-app-mannyyebz
```

## 🔑 How to Integrate API Key

```bash
cp .env
# Add your OpenWeatherMap API key to .env
WEATHER_API_KEY=your_key_here
```

## ▶️ How to Run

```bash
weather-app Tokyo
```

## 📁 Project Structure

```
weather-app/
├── src/
│   └── weather_app/
│       ├── __init__.py
│       └── client.py
├── README.md
└── pyproject.toml
```