Coverage for install/scipp/io/__init__.py: 0%
3 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +0000
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright (c) 2023 Scipp contributors (https://github.com/scipp)
3# @file
4# @author Simon Heybrock
6# ruff: noqa: F403
8"""File input and output.
10All functions listed here are also available in :mod:`scipp.io` module directly,
11e.g., as ``scipp.io.load_hdf5``.
13See also `Reading and Writing Files <../../user-guide/reading-and-writing-files.ipynb>`_.
15Functions
16---------
17.. currentmodule:: scipp.io
19.. autosummary::
21 csv.load_csv
22 hdf5.load_hdf5
23 hdf5.save_hdf5
24""" # noqa: E501
26from .csv import load_csv
27from .hdf5 import load_hdf5, save_hdf5
29__all__ = ["load_csv", "load_hdf5", "save_hdf5"]