Obtain local weather information based on zipcode.
Project description
Weather Wise
Overview
Welcome to Weather Wise, a Python module for accurate and reliable weather information. Weather Wise uses the National Weather Service (NWS) to fetch the current weather forecast and other weather-related details from a zipcode. This module uses the U.S. Census 2022 Gazetteer (Zip Code Tabulation Areas). The original file has been modified to JSON.
Usage
import json
from weather_wise.weather_wise import WeatherWise
weather = WeatherWise("32904")
# Internal weather methods.
print(weather._load_json_data())
print(weather._get_latitude_longitude())
print(weather._get_weather_forecast_url())
print(json.dumps(weather._get_weather_data(), indent=2))
# Get the short forecast.
short_forecast = weather.get_short_forecast()
print(short_forecast)
# Get the temperature in fahrenheit.
temperature_in_fahrenheit_with_unit = weather.get_temperature_in_fahrenheit(temperature_unit=True)
temperature_in_fahrenheit = weather.get_temperature_in_fahrenheit()
print(temperature_in_fahrenheit_with_unit)
print(temperature_in_fahrenheit)
# Get the temperature in celsius.
temperature_in_celsius_with_unit = weather.get_temperature_in_celsius(temperature_unit=True)
temperature_in_celsius = weather.get_temperature_in_celsius()
print(temperature_in_celsius_with_unit)
print(temperature_in_celsius)
# Get the probability of precipitation.
probability_of_precipitation_with_unit = weather.get_probability_of_precipitation(percentage_unit=True)
probability_of_precipitation = weather.get_probability_of_precipitation()
print(probability_of_precipitation_with_unit)
print(probability_of_precipitation)
# Get the relative humidity.
relative_humidity_with_unit = weather.get_relative_humidity(percentage_unit=True)
relative_humidity = weather.get_relative_humidity()
print(relative_humidity_with_unit)
print(relative_humidity)
# Get the wind speed.
wind_speed = weather.get_wind_speed()
wind_speed_without_unit = weather.get_wind_speed(wind_unit=False)
print(wind_speed)
print(wind_speed_without_unit)
# Get the wind direction.
wind_direction = weather.get_wind_direction()
print(wind_direction)
# Get the weather icon url.
icon_url = weather.get_weather_icon_url()
print(icon_url)
References
-
Gazetteer Files
-
API Documentation
-
API Discussion
-
Outage & Status Messages
TODO
- Get severe weather alerts.
Project details
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_wise-0.1.9.tar.gz.
File metadata
- Download URL: weather_wise-0.1.9.tar.gz
- Upload date:
- Size: 3.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-55-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
740ddaddc3bb4a16f872543ab8074fd731dede99b99bd613b3c1265cb3d5529d
|
|
| MD5 |
a2a95f28c8e33fefeef1d873b6f48137
|
|
| BLAKE2b-256 |
5e9346f7bb2aac2dda50ee3b8d397a5c4c2f830f0f1372411d5a3e288495c508
|
File details
Details for the file weather_wise-0.1.9-py3-none-any.whl.
File metadata
- Download URL: weather_wise-0.1.9-py3-none-any.whl
- Upload date:
- Size: 3.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.3 Linux/6.8.0-55-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1415ae307abfa20227d4ca85741b68bc410e18561916ff65b5d7b53abb71911f
|
|
| MD5 |
026dfd72cbf6525cbe15a040e6d23e1e
|
|
| BLAKE2b-256 |
d7ece4d9f8edee9463f4308704bfe27b71a37781ac7059f06a2bbf7d806ff91e
|