Buoy Instance

class pybuoy.Buoy

Buoy class provides convenient access to NDBC’s API.

Instances of this class are the gateway to interacting with National Data Buoy Center (NDBC) through pybuoy. The canonical way to get an instance of this class is via:

from pybuoy import Buoy

buoy = Buoy() # creates instance to access data from NDBC

meteorological_data = buoy.realtime.get(station_id="44065")

all_active_NDBC_stations = buoy.stations.get_active()
__init__()