Skip to main content

meteostat.Provider

Enumeration of data providers integrated in Meteostat.

  • Type: Enumeration
  • Source Code: GitHub

The Provider enumeration defines all available weather data providers that Meteostat can access. Different providers offer different data granularities, parameters, and geographical coverage. You can specify which providers to use when retrieving weather data.

Enumeration Members

Please refer to the full list of providers.

Example

import meteostat as ms

# Request data from specific providers
ts = ms.daily(
'10637',
start_date,
end_date,
providers=[ms.Provider.DWD_DAILY]
)

df = ts.fetch()
print(df)