Coverage for install/scipp/io/__init__.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.0, created at 2024-04-28 01:28 +0000

1# SPDX-License-Identifier: BSD-3-Clause 

2# Copyright (c) 2023 Scipp contributors (https://github.com/scipp) 

3# @file 

4# @author Simon Heybrock 

5 

6# ruff: noqa: F403 

7 

8"""File input and output. 

9 

10All functions listed here are also available in :mod:`scipp.io` module directly, 

11e.g., as ``scipp.io.load_hdf5``. 

12 

13See also `Reading and Writing Files <../../user-guide/reading-and-writing-files.ipynb>`_. 

14 

15Functions 

16--------- 

17.. currentmodule:: scipp.io 

18 

19.. autosummary:: 

20 

21 csv.load_csv 

22 hdf5.load_hdf5 

23 hdf5.save_hdf5 

24""" # noqa: E501 

25 

26from .csv import load_csv 

27from .hdf5 import load_hdf5, save_hdf5 

28 

29__all__ = ["load_csv", "load_hdf5", "save_hdf5"]