NASA Logo
Ocean Color Science Software

ocssw V2022
__init__.py
Go to the documentation of this file.
1 # Licensed under a 3-clause BSD style license - see LICENSE.rst
2 
3 """
4 IO Interface for Reading CCSDS Data in Python.
5 """
6 
7 # For egg_info test builds to pass, put package imports here.
8 
9 from . import converters
10 from .packet_fields import PacketField, PacketArray
11 from .packet_types import FixedLength, VariableLength
12 from .utils import split_by_apid
13 
14 try:
15  from ._version import __version__
16  from ._version import version_tuple
17 except ImportError:
18  __version__ = "unknown"
19  version_tuple = (0, 0, "unknown version")