Skip to main content

Python interface to the Australia Government BOM Weather API

Project description

Python interface for Australian BOM Weather API

Includes support for AsyncIO and returns populated objects with objects parsed ready for use.

Disclaimer This package is not associated with or endorsed by the Australian Bureau of Meteorology (BOM). Usage may be subject to their term and conditions. See the copyright notice published on their website for more information: http://reg.bom.gov.au/other/copyright.shtml

Installation

# Pip
pip install bomapi

# Pipenv
pipenv install bomapi

# Poetry
poetry add bomapi

Usage

Find a location

import bomapi

results = bomapi.location_search("Wollongong")
for result in results:
    print(result.name)

Get data from a location

import bomapi

geohash = "r3gk6rr"  # Wollongong (or use the result object from location_search)
location = bomapi.Location(geohash)

observations = location.observations()
print(observations.rain_since_9am)

Async support

import bomapi.aio

geohash = "r3gk6rr"  # Wollongong
location = bomapi.aio.Location(geohash)

observations = await location.observations()
print(observations.rain_since_9am)

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

bomapi-0.1.0.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

bomapi-0.1.0-py3-none-any.whl (6.6 kB view hashes)

Uploaded Python 3

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