Metadata-Version: 2.4
Name: weatherbox-tanakit
Version: 0.1.0
Summary: WeatherBox API pip package - ดึงข้อมูลพยากรณ์อากาศ
Project-URL: Homepage, https://github.com/Tanakitsonthe/weatherbox-tanakit
Project-URL: Issues, https://github.com/Tanakitsonthe/weatherbox-tanakit/issues
Author-email: Tanakit Sonthe <tanakittnutt@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: requests>=2.28
Description-Content-Type: text/markdown

# weatherbox-tanakit

Package สำหรับดึงข้อมูลพยากรณ์อากาศ สร้างขึ้นเพื่อทดสอบการ publish บน PyPI
ออกแบบตามแพตเทิร์น client library เหมือน iapp-ai

## การติดตั้ง

```bash
pip install weatherbox-tanakit
```

## วิธีใช้งาน

```python
from weatherbox import WeatherAPI

api = WeatherAPI()

# อากาศปัจจุบันจากชื่อเมือง
print(api.get_weather_by_city("Bangkok"))

# หรือระบุพิกัดเอง
print(api.get_current_weather(13.75, 100.50))

# พยากรณ์ล่วงหน้า 3 วัน
print(api.get_forecast(13.75, 100.50, days=3))
```

## License

MIT License
