A free and asynchronous weather API wrapper made in Python, for Python.
Project description
python-weather

A free and asynchronous weather Python API wrapper made in Python, for Python.
Installation
$ pip install python-weather
Example
For more information, please read the documentation.
# import the module
import python_weather
import asyncio
import os
async def getweather():
# declare the client. the measuring unit used defaults to the metric system (celcius, km/h, etc.)
async with python_weather.Client(unit=python_weather.IMPERIAL) as client:
# fetch a weather forecast from a city
weather = await client.get('New York')
# returns the current day's forecast temperature (int)
print(weather.temperature)
# get the weather forecast for a few days
for daily in weather.daily_forecasts:
print(daily)
# hourly forecasts
for hourly in daily.hourly_forecasts:
print(f' --> {hourly!r}')
if __name__ == '__main__':
# see https://stackoverflow.com/questions/45600579/asyncio-event-loop-is-closed-when-getting-loop
# for more details
if os.name == 'nt':
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
asyncio.run(getweather())
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
python-weather-2.0.0.tar.gz
(11.6 kB
view details)
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 python-weather-2.0.0.tar.gz.
File metadata
- Download URL: python-weather-2.0.0.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
414012034a9dbee29afe968895d1f5a8043aa2d27106e94809ecb486ce1827d6
|
|
| MD5 |
045cadba51e9c1b51b620c69e02c29c4
|
|
| BLAKE2b-256 |
e2144c1fb7e5bf1894ee014625477a075ec08fc2b17aea527671ab0123cd77b7
|
File details
Details for the file python_weather-2.0.0-py3-none-any.whl.
File metadata
- Download URL: python_weather-2.0.0-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
832c9849684008543465e4aaf9f822f09ace8f85fd99e0f049279303e876e73f
|
|
| MD5 |
93520e6f9faeb4b6da8f246718a78faf
|
|
| BLAKE2b-256 |
4eeda66670384073cd46cd7fbda0c59a49d0d78cdbfb22c00ae6ff7611389f36
|