Simple Python interface to the The Danish Meteorological Institute's (DMI) Open Data API.
Project description
DMI Open Data API
Simple Python interface to the The Danish Meteorological Institute's (DMI) Open Data API.
Requirements
- Python 3.6+
Install required packages pip install -r requirements.txt
.
Example
from datetime import datetime
import os
from dmi_open_data import DMIOpenDataClient, Parameter
# Get 10 stations
client = DMIOpenDataClient(api_key=os.getenv('DMI_API_KEY'))
stations = client.get_stations(limit=10)
# Get all stations
stations = client.get_stations()
# Get DMI station
dmi_station = next(
station
for station in stations
if station['name'].lower() == 'dmi')
# Get available parameters
parameters = client.list_parameters()
# Get temperature observations from DMI station in given time period
observations = client.get_observations(
parameter=Parameter.TempDry,
station_id=dmi_station['stationId'],
from_time=datetime(2020, 12, 20),
to_time=datetime(2020, 12, 24),
limit=1000)
Tests
Run tests
python -m unittest discover tests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dmi-open-data-0.0.1.tar.gz
(4.9 kB
view details)
File details
Details for the file dmi-open-data-0.0.1.tar.gz
.
File metadata
- Download URL: dmi-open-data-0.0.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.3.3 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41e48df064577ac787e55b52d62f547be08344b979395205d792c430d6e60c1b |
|
MD5 | 9c109cc2f151b8b3a588ab48dbb6923f |
|
BLAKE2b-256 | 01efc8145785ac279522656a827b073fc37ad9ef83e363ab5e41edc4a0e35da6 |