Natural Language Weather Retriever
Project description
Weather-Retriever
Weather-Retriever is a Python package that allows users to retrieve and format weather information in natural language, specifically tailored for Korean speakers. It leverages data from OpenWeatherMap and incorporates natural language processing (NLP) techniques to extract temporal and location information from user queries. The package presents weather forecasts in a user-friendly format, accommodating Korean-language date expressions and appropriate word forms.
Features
- Retrieve real-time weather data from OpenWeatherMap.
- Understand and process natural language queries in Korean.
- Cache city coordinates for efficient API usage.
- Format weather forecasts in an easily readable manner.
Building the Package
- Prepare for Packaging:
- Ensure the city coordinate file is saved correctly in '~/.weather_retriever'.
- Create a Distribution:
- Build the package using
setuptools:
# pip install setuptools wheel python setup.py sdist bdist_wheel
- Build the package using
- Publish to PyPI:
- Use
twineto upload the package:
# pip install twine python -m twine upload dist/*
- Use
Installation
You can install WeatherRetriever in two ways:
- Install via PyPI:
# https://pypi.org/project/weather_retriever/0.1.8/ pip install weather_retriever
- This method allows you to install the package directly from PyPI.
- Install from GitHub:
git clone https://github.com/KimRass/weather_retriever cd weather_retriever pip install .
- This method is useful if you want to access the latest code or contribute to the project.
Usage
from weather_retriever import WeatherRetriever
# The OpenWeatherMap API key must be provided when initializing `WeatherRetriever`.
owm_api_key = "YOUR_OPENWEATHERMAP_API_KEY"
wr = WeatherRetriever(owm_api_key)
query = "YOUR_QUERY"
# Ensure network access is available to retrieve real-time weather data.
response = wr.query(query)
print(response)
- The package also includes intelligent caching of city coordinates to minimize redundant API calls.
Query Examples
- "내일 서울 날씨는 어때?"
- "사흘 뒤의 상하이 날씨 어때?"
- "2024년 11월 6일의 런던 날씨는 어떻습니까?"
- "내일 오전 워싱턴 날씨는?"
- "내일과 2024년 11월 8일의 부산 날씨는 어떻습니까?"
- "뉴욕 날씨를 알려주세요. 내일과 모레에 대해서."
File Handling
- The package saves city coordinate data in '~/.weather_retriever/city_coords.json' to cache information for efficient lookups.
- The
pathliblibrary is used for managing file and directory operations.
Testing
- To run the tests, you can use Python's built-in unittest framework or pytest. To execute the tests, simply run:
pytest
License
- This project is licensed under the Apache License 2.0. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file weather_retriever-0.1.11.tar.gz.
File metadata
- Download URL: weather_retriever-0.1.11.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2ffb7692f406c3c92b131c134366c6f080cf8d802c87d0a54fc2b9016e866ef
|
|
| MD5 |
f5a99ef7e90609c19a60bf1a212e71ac
|
|
| BLAKE2b-256 |
6174983f3508dad9a6f752745003a724e3e7d175c6f2115fc049a1353368573c
|
File details
Details for the file weather_retriever-0.1.11-py3-none-any.whl.
File metadata
- Download URL: weather_retriever-0.1.11-py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b9c244ab714f5f5e5077be971fa89fd354470e15e11c61acb493f96d5ebd027
|
|
| MD5 |
038747af241748e61fbc73ffe1dcc97c
|
|
| BLAKE2b-256 |
e4b60bf9aceb09f699c86f3bd6ce7b8adb79d5facee8cf85b3c62ea5f82b660e
|