Skip to content
This repository has been archived by the owner on Oct 4, 2022. It is now read-only.

Shiqan/buienradar-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI

Unofficial wrapper for the buienradar API (dutch weather forecast). The Buienradar API currently features the following services:

  • 2 hour GPS forecast based on longitude and latitude.
  • Actual measurements per station
  • 5 day forecast
  • weather report
from buienradar import BuienradarApi

api = BuienradarApi()
api.get_actual_weather()
from buienradar import AsyncBuienradarApi

async def test():
    async with AsyncBuienradarApi() as api:
        forecast = await api.get_forecast()
        print(forecast)

License

Licensed under the MIT License.

Releases

No releases published

Packages

No packages published

Languages