You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
826 B

4 years ago
  1. # This file is part of h5py, a Python interface to the HDF5 library.
  2. #
  3. # http://www.h5py.org
  4. #
  5. # Copyright 2008-2013 Andrew Collette and contributors
  6. #
  7. # License: Standard 3-clause BSD; see "license.txt" for full license terms
  8. # and contributor agreement.
  9. # pylint: disable=unused-import
  10. """
  11. This is the deprecated legacy high-level interface.
  12. Everything here is canonically located at the root of the package.
  13. New code should import directly from there, e.g. "from h5py import File".
  14. """
  15. from __future__ import absolute_import
  16. from ._hl import filters
  17. from ._hl.base import is_hdf5, HLObject
  18. from ._hl.files import File
  19. from ._hl.group import Group, SoftLink, ExternalLink, HardLink
  20. from ._hl.dataset import Dataset
  21. from ._hl.datatype import Datatype
  22. from ._hl.attrs import AttributeManager