Provides easy access to meteoblue dataset sdk.
Project description
Meteoblue Python Dataset SDK
Prerequisites
check default python version (e.g. on debian linux)
python --version
should equal more than 3.6
otherwise switch version with
update-alternatives --config python
as root
Usage / Test
qparams = {'units': {'temperature': 'C', 'velocity': 'km/h', 'length': 'metric', 'energy': 'watts'}, 'geometry': {'type': 'Polygon', 'coordinates': [[[7.313768, 46.982946], [7.313768, 47.692346], [8.621369, 47.692346], [8.621369, 46.982946], [7.313768, 46.982946]]]}, 'format': 'netCDF', 'timeIntervals': ['2000-01-01T+00:00/2019-01-04T+00:00'], 'timeIntervalsAlignment': 'none', 'queries': [{'domain': 'NEMSGLOBAL', 'gapFillDomain': None, 'timeResolution': 'hourly', 'codes': [{'code': 11, 'level': '2 m above gnd'}]}]}
from meteoblue_dataset_sdk import *
mb = MeteoblueDatasetClient(apikey='XXXXXXXXXXXXXXX') # ask for key
mb.query(qparams)
Build pip package
One time config
python -m pip --version
python -m pip install --upgrade pip setuptools wheel
python -m pip install tqdm
python -m pip install --user --upgrade twine
cat <<EOF > ~/.pypirc
[distutils]
index-servers=pypi
[pypi]
repository = https://upload.pypi.org/legacy/
username = meteoblue
EOF
Update metadata in setup.py
setuptools.setup(
name="meteoblue-dataset-sdk", # Replace with your own username
version="0.0.2",
author="Jonas Wolff",
author_email="jonas.wolff@meteoblue.com",
description="Provides easy access to meteoblue dataset sdk.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/meteoblue/python-dataset-sdk",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
Compile
python setup.py bdist_wheel
Upload
python -m twine upload --skip-existing dist/*
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
Built Distribution
Close
Hashes for meteoblue_dataset_sdk-0.0.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78370550e85d26eafa9bb979c367904c39540b4a5d16df2d649640e3a52adb54 |
|
MD5 | 5928514305e47376b7dbff404b32a8a9 |
|
BLAKE2b-256 | 4f6295fa3f76c876bf49133488c5f0d40d4e3ed961b4e4838e1be65fa79ce729 |
Close
Hashes for meteoblue_dataset_sdk-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43591f45108d5c57975bc0fe3e8e594ca8838cf1978c4e63ffcf3235ab9d2ddb |
|
MD5 | 426ae7c67a0c42c00fad27a1bceb0b0f |
|
BLAKE2b-256 | 1544c939f2d84bc2549fd4f4cf272a783a945434e2acefb9a6bc3048faf43846 |