pywttr

Build Status
codecov
Python Version
License: MIT

Wrapper for wttr.in weather forecast.

Asynchronous version here.

Installation

pip install pywttr

Example

This example prints the average temperature in New York today.

import pywttr

forecast = pywttr.en.get_forecast("New York")
print(forecast.weather[0].avgtemp_c)

Other languages may also be used instead of en. For a complete list of supported languages, see the file names or follow the code completion in your IDE.

Documentation

There is no documentation, just follow the code completion from your IDE. I’d recommend Visual Studio Code (with Python extension) or PyCharm.

GitHub

View Github