skillfed

meteomatics

Meteomatics API connector

meteomatics v4.0.0 129.5K downloads/30d#11,666 on PyPI56
Permissive license MIT Active released

What it is and what it does

Meteomatics is a Python client library that wraps the Meteomatics REST API, enabling programmatic access to global weather data including historical observations, current conditions, and forecasts. The API supports retrieval in multiple formats—time series and areal data—with optional geographic and temporal combinations available through NetCDF and WMS/WFS-compatible interfaces.

The package depends on standard data-handling libraries (pandas, requests, pytz, isodate) to manage API communication, time zone handling, and data serialization. It is designed for developers who need to integrate weather data into applications, analysis pipelines, or monitoring systems without building HTTP clients from scratch.

Use it for:

  • Fetch historical weather observations for a location to analyze past climate patterns or validate models.
  • Retrieve forecast data for multiple coordinates to power weather-aware scheduling or alert systems.
  • Export areal weather data in NetCDF format for integration with scientific computing workflows.
  • Build a real-time weather dashboard by querying current conditions at regular intervals.
  • Combine geographic and time series data for climate research or environmental assessments.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Connects Python applications to the Meteomatics Weather API to retrieve historic, current, and forecast weather data globally in time series and areal formats.

Yes. The package is actively maintained, has low install friction, carries no known vulnerabilities, and uses a permissive MIT license. It is well-suited for any Python project that needs to integrate Meteomatics weather data. The main consideration is that you must have valid API credentials and understand the service's rate limits and pricing model.

Install

meteomatics on PyPI

pip

pip install meteomatics

uv

uv add meteomatics

poetry

poetry add meteomatics

Installing meteomatics

Before you install

Low install friction with a pure-Python wheel distribution. The package is actively maintained with a recent commit on 2026-06-15 and a release on 2026-04-29, indicating ongoing support.

License in practice

MIT license is permissive, allowing free use, modification, and distribution with minimal restrictions—suitable for both open-source and commercial projects.

Quickstart

pip install meteomatics

import meteomatics.api as api
df = api.query_time_series(
    coordinates=[...],
    start_date=...,
    end_date=...,
    interval=...,
    parameters=[...]
)

Requires Python >= 3.9.0 and valid Meteomatics API credentials.

Verify before relying

  • Whether the package requires API credentials or authentication setup beyond standard pip installation
  • Specific rate limits or usage quotas imposed by the Meteomatics API service
  • Whether NetCDF output support requires additional system libraries
  • Example coordinate values and parameter names for typical queries

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.9.0)
Install friction low — pure-Python wheel
Runtime dependencies 5 — isodate, pandas, pathlib2, pytz, requests
Maintenance actively maintained — 107 days since the last release
Last repo commit
First released
Downloads 129,519/month — #11,666 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: meteomatics-4.0.0-py3-none-any.whl

License :: OSI Approved :: MIT LicenseProgramming Language :: PythonProgramming Language :: Python :: 3

Tags

weather api clientmeteomatics connectorweather data retrievalforecast api pythonweather time seriesglobal weather datarest weather api
weather-datarest-api-clientgeospatial

More WWW/HTTP packages