Python library to fetch weather data from multiple providers
Project description
akvo-weather-info
A Python library to fetch weather data from multiple providers (OpenWeatherMap, WeatherAPI.com, Google Weather).
Installation
pip install akvo-weather-info
For development:
pip install -e .
Configuration
Create a .env file in your project root with API keys:
OPENWEATHER=your_openweathermap_api_key
WEATHERAPI=your_weatherapi_api_key
GOOGLEWEATHER=your_google_maps_api_key
Get API keys from:
- OpenWeatherMap: https://openweathermap.org/api
- WeatherAPI: https://www.weatherapi.com/
- Google Maps Platform: https://developers.google.com/maps/documentation/weather
Library Usage
Basic Import
from weather.services import OpenWeatherMapService, WeatherAPIService, GoogleWeatherService
# Using OpenWeatherMap
owm = OpenWeatherMapService()
current = owm.get_current("Jakarta")
print(f"Temperature: {current.temperature}C")
print(f"Condition: {current.description}")
# Using WeatherAPI.com
wa = WeatherAPIService()
current = wa.get_current("London")
print(f"Temperature: {current.temperature}C")
# Using Google Weather
gw = GoogleWeatherService()
current = gw.get_current("Tokyo")
print(f"Temperature: {current.temperature}C")
Query by Coordinates
All services support coordinate-based queries:
from weather.services import OpenWeatherMapService, GoogleWeatherService
# OpenWeatherMap by coordinates
owm = OpenWeatherMapService()
current = owm.get_current_by_coords(lat=-6.2088, lon=106.8456)
hourly = owm.get_forecast_hourly_by_coords(lat=-6.2088, lon=106.8456, hours=24)
# Google Weather by coordinates (skips geocoding)
gw = GoogleWeatherService()
current = gw.get_current_by_coords(lat=51.5074, lon=-0.1278)
daily = gw.get_forecast_daily_by_coords(lat=51.5074, lon=-0.1278, days=7)
Get Forecast
from weather.services import OpenWeatherMapService
service = OpenWeatherMapService()
# Hourly forecast
hourly = service.get_forecast_hourly("Tokyo", hours=24)
for forecast in hourly:
print(f"{forecast.forecast_time}: {forecast.temperature}C")
# Daily forecast
daily = service.get_forecast_daily("New York", days=5)
for forecast in daily:
print(f"{forecast.forecast_time.date()}: {forecast.temperature}C")
Get Raw API Response
from weather.services import WeatherAPIService
service = WeatherAPIService()
# Raw response as dict
raw = service.get_current_raw("Jakarta")
print(raw["current"]["temp_c"])
print(raw["current"]["condition"]["text"])
# Raw forecast
raw_forecast = service.get_forecast_raw("Jakarta")
print(raw_forecast["forecast"]["forecastday"])
Data Models
from weather.models import WeatherData, Forecast
# WeatherData fields
weather.location # str: "Jakarta, ID"
weather.temperature # float: temperature in Celsius
weather.feels_like # float: feels like temperature
weather.humidity # int: humidity percentage
weather.description # str: weather description
weather.wind_speed # float: wind speed in m/s
weather.timestamp # datetime: data timestamp
# Convert to dict
data_dict = weather.to_dict()
Formatters
from weather.services import OpenWeatherMapService
from weather.formatters import format_json, format_text
service = OpenWeatherMapService()
current = service.get_current("Jakarta")
# Format as JSON string
json_output = format_json(current)
# Format as readable text
text_output = format_text(current)
CLI Usage
# By location name
python -m weather --service=<SERVICE> --location=<LOCATION> [--output=<FORMAT>] [--forecast=<TYPE>] [--raw]
# By coordinates
python -m weather --service=<SERVICE> --lat=<LAT> --lon=<LON> [--output=<FORMAT>] [--forecast=<TYPE>] [--raw]
Arguments
| Argument | Required | Values | Description |
|---|---|---|---|
--service |
Yes | owm, wa, gw |
Weather service (owm = OpenWeatherMap, wa = WeatherAPI.com, gw = Google Weather) |
--location |
* | string | Location name (e.g., "Jakarta", "London,UK") |
--lat |
* | float | Latitude (use with --lon) |
--lon |
* | float | Longitude (use with --lat) |
--output |
No | text, json |
Output format (default: text) |
--forecast |
No | hour, day |
Forecast type. If omitted, shows current weather |
--raw |
No | flag | Show raw API response without field mapping |
* Either --location OR both --lat and --lon are required.
CLI Examples
# Current weather by location
python -m weather --service=owm --location="Jakarta"
# Current weather by coordinates
python -m weather --service=gw --lat=-6.2088 --lon=106.8456
# JSON output
python -m weather --service=wa --location="London" --output=json
# Hourly forecast
python -m weather --service=gw --location="Tokyo" --forecast=hour
# Daily forecast by coordinates
python -m weather --service=owm --lat=40.7128 --lon=-74.0060 --forecast=day
# Raw API response
python -m weather --service=owm --location="Jakarta" --raw --output=json
Project Structure
weather/
├── __init__.py
├── __main__.py # CLI entry point
├── cli.py # Argument parsing
├── config.py # API key management
├── models.py # Data models (WeatherData, Forecast)
├── services/
│ ├── base.py # Abstract base class
│ ├── openweathermap.py
│ ├── weatherapi.py
│ └── google_weather.py
└── formatters/
├── json_formatter.py
├── text_formatter.py
└── raw_formatter.py
Requirements
- Python >= 3.10
- httpx
- python-dotenv
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 akvo_weather_info-0.3.0.tar.gz.
File metadata
- Download URL: akvo_weather_info-0.3.0.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8f52a16157db667b937786e3bcf0e2b5cf66c10d3996be023be43f804a2cc53
|
|
| MD5 |
51b62cfac607e8b1c7a2aa0f6b0af6cc
|
|
| BLAKE2b-256 |
f26bd4e7664e58e524323f558dc1b9afb9539d0b78495fcf4765d3df92fd12c4
|
Provenance
The following attestation bundles were made for akvo_weather_info-0.3.0.tar.gz:
Publisher:
workflow.yml on akvo/weather-info
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
akvo_weather_info-0.3.0.tar.gz -
Subject digest:
c8f52a16157db667b937786e3bcf0e2b5cf66c10d3996be023be43f804a2cc53 - Sigstore transparency entry: 1174477309
- Sigstore integration time:
-
Permalink:
akvo/weather-info@96cdfc228c5de52f3e685e28353f63fc5b9e9741 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/akvo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@96cdfc228c5de52f3e685e28353f63fc5b9e9741 -
Trigger Event:
push
-
Statement type:
File details
Details for the file akvo_weather_info-0.3.0-py3-none-any.whl.
File metadata
- Download URL: akvo_weather_info-0.3.0-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abda89c9fd6147d111d2145ece40da6548079d061787965d30f50e49e6266733
|
|
| MD5 |
98d7893957e4605f3ab701a235089262
|
|
| BLAKE2b-256 |
7cead5907d033e4fa9ac06520cb16f9dc17568ff39c2d0e011c3eaf285035642
|
Provenance
The following attestation bundles were made for akvo_weather_info-0.3.0-py3-none-any.whl:
Publisher:
workflow.yml on akvo/weather-info
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
akvo_weather_info-0.3.0-py3-none-any.whl -
Subject digest:
abda89c9fd6147d111d2145ece40da6548079d061787965d30f50e49e6266733 - Sigstore transparency entry: 1174477326
- Sigstore integration time:
-
Permalink:
akvo/weather-info@96cdfc228c5de52f3e685e28353f63fc5b9e9741 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/akvo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@96cdfc228c5de52f3e685e28353f63fc5b9e9741 -
Trigger Event:
push
-
Statement type: