1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
"""
The sidpy package
"""
from .__version__ import version as __version__
from . import base, hdf, io, proc, sid, viz
from .base import *
from .hdf import *
from .io import *
from .proc import *
from .sid import *
from .viz import plot_utils
from .viz import jupyter_utils
__all__ = ['__version__']
# Traditional hierarchical approach - importing submodules
__all__ += base.__all__
__all__ += hdf.__all__
__all__ += io.__all__
__all__ += proc.__all__
__all__ += sid.__all__
__all__ += viz.__all__
# Making things easier by surfacing all low-level modules directly:
__all__ += ['dict_utils', 'num_utils', 'string_utils']
__all__ += ['hdf_utils', 'reg_ref', 'dtype_utils', 'prov_utils']
__all__ += ['interface_utils']
__all__ += ['comp_utils']
__all__ += ['Dimension', 'Translator', 'Dataset', 'Reader']
__all__ += ['plot_utils', 'jupyter_utils']
|