Skip to main content

Python Wrapper for WeatherBit Rest API

Project description

Python Wrapper for WeatherBit API

Latest PyPI version Supported Python

This module communicates with WeatherBit.io using their REST API. The module is only supporting the Free Tier API's, for which there is more information here.

For the Free Tier, data can be retrieved for the following:

  • Current Conditions
  • Forecast Data - Daily data.
  • Severe Weather Alerts

It will require an API Key to work, which can be retrieved for free at Weatherbit

The module is primarily written for the purpose of being used in Home Assistant for the Custom Integration called weatherbit but might be used for other purposes also.

Install

pyweatherbitdata is avaible on PyPi:

pip install pyweatherbitdata

Usage

This library is primarily designed to be used in an async context.

The main interface for the library is the pyweatherbitdata.WeatherBitApiClient. This interface takes 7 options:

  • api_key: (required) A Personal API Key retrieved from WeatherBit (See above).
  • latitude: (required) Latitude of the location needing data from.
  • longitude: (required) Longitude of the location needing data from.
  • units: (optional) Valid options here are metric or imperial. This module is set to always retrieve data in metric units, so conversion of values will only take place if if metric is not selected. Default value is metric
  • language: (optional) The language for all text values retrieved from WeatherBit. Default is en
  • homeassistant: (optional) Valid options are True or False. If set to True, there will be some unit types that will not be converted, as Home Assistant will take care of that. Default value is True

Example program

"""Test Program."""
from __future__ import annotations

import asyncio
import logging
import time

from pyweatherbitdata.api import WeatherBitApiClient
from pyweatherbitdata.data import (
    ObservationDescription,
    BaseDataDescription,
    ForecastDescription
)
from pyweatherbitdata.exceptions import (
    InvalidApiKey,
    RequestError,
    ResultError,
)

_LOGGER = logging.getLogger(__name__)

async def main() -> None:
    logging.basicConfig(level=logging.DEBUG)
    start = time.time()

    weatherbit = WeatherBitApiClient(
        "YOU_API_KEY",
        55.625053,
        12.136619,
        language="da",
    )
    try:
        await weatherbit.initialize()

    except InvalidApiKey as err:
        _LOGGER.debug(err)
    except RequestError as err:
        _LOGGER.debug(err)
    except ResultError as err:
        _LOGGER.debug(err)

    data: BaseDataDescription = weatherbit.station_data
    if data is not None:
        for field in data.__dataclass_fields__:
            value = getattr(data, field)
            print(field, "-", value)

    data: ObservationDescription = await weatherbit.update_sensors()
    if data is not None:
        for field in data.__dataclass_fields__:
            value = getattr(data, field)
            print(field, "-", value)

    data: ForecastDescription = await weatherbit.update_forecast()
    if data is not None:
        for field in data.__dataclass_fields__:
            value = getattr(data, field)
            print(field, "-", value)

    end = time.time()

    await weatherbit.req.close()

    _LOGGER.info("Execution time: %s seconds", end - start)

asyncio.run(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyweatherbitdata-1.0.15.tar.gz (12.5 kB view details)

Uploaded Source

Built Distribution

pyweatherbitdata-1.0.15-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file pyweatherbitdata-1.0.15.tar.gz.

File metadata

  • Download URL: pyweatherbitdata-1.0.15.tar.gz
  • Upload date:
  • Size: 12.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for pyweatherbitdata-1.0.15.tar.gz
Algorithm Hash digest
SHA256 9d72bcd57b09ab71d39fe3310f49b89f8f322227a9b88d097ef82ed001393642
MD5 731f11c499bf25454f526fb2669e40a3
BLAKE2b-256 81c791bf0fbcbe1d2c1aedfb3815ed88d5d0c6358bfe711d9b1c3ef621eacf2b

See more details on using hashes here.

File details

Details for the file pyweatherbitdata-1.0.15-py3-none-any.whl.

File metadata

File hashes

Hashes for pyweatherbitdata-1.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 593b076b941d3dfac96a2d7fde55447c5a28287ada9eeeb41172bac98bf895c7
MD5 32fd3e72a1dce674c83b766ec165e738
BLAKE2b-256 e5cdb97d02b35494722f56ffc0d6241de360d71dcd51f0acfc8f04763931074e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page