mattbit / meteo

Accurate weather forecasting for Paris, France.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

Paris weather forecasts

A simple mathematical model to provide weather forecasts for Paris, France. Accuracy is estimated to be 91% based on the latest measurements.

Usage

import datetime
from meteo.weather import Weather

w = Weather()

# Get the current condition
print(w.condition())

# Get the forecast for tomorrow
tomorrow = datetime.datetime.today() + datetime.timedelta(days=1)
print(w.forecast(tomorrow))

Contributions

Any contribution is welcome! ;)


Made in a rainy day in Paris ☂︎

About

Accurate weather forecasting for Paris, France.

License:The Unlicense


Languages

Language:Python 100.0%