Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
bosdyn-core / bddf / __init__.py
Size: Mime:
# Copyright (c) 2023 Boston Dynamics, Inc.  All rights reserved.
#
# Downloading, reproducing, distributing or otherwise using the SDK Software
# is subject to the terms and conditions of the Boston Dynamics Software
# Development Kit License (20191101-BDSDK-SL).

"""Code for reading and writing 'bddf' data files."""

# Importing symbols to use directly via "bosdyn.bddf" namespace.

# pylint: disable=unused-import
from .common import (LOGGER, PROTOBUF_CONTENT_TYPE, AddSeriesError, ChecksumError, DataError,
                     DataFormatError, ParseError, SeriesNotUniqueError)
# Class for reading data from a file-like object which is seekable.
from .data_reader import DataReader
# Class for writing data to a file.
from .data_writer import DataWriter
# Class for registering a series which stores GRPC request/response pairs.
from .grpc_reader import GrpcReader
# Class for registering a series which stores GRPC request/response pairs.
from .grpc_service_writer import GrpcServiceWriter
# A class for reading message data from a DataFile.
from .message_reader import MessageReader
# Class for reading a series of POD data from a DataFile.
from .pod_series_reader import PodSeriesReader
# Class which assists with writing POD data values into a series, within a DataWriter.
from .pod_series_writer import PodSeriesWriter
# A class for reading a single channel of Protobuf data from a DataFile.
from .protobuf_channel_reader import ProtobufChannelReader
# A class for reading Protobuf data from a DataFile.
from .protobuf_reader import ProtobufReader
# Class which assists with writing POD data values into a series, within a DataWriter.
from .protobuf_series_writer import ProtobufSeriesWriter
# A data reader which reads the file format from a stream, without seeking.
from .stream_data_reader import StreamDataReader