Coverage for install/scipp/compat/__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 Jan-Lukas Wynen 

5 

6"""Functions to convert to/from data structures of other libraries.""" 

7 

8from .pandas_compat import from_pandas 

9from .xarray_compat import from_xarray, to_xarray 

10 

11__all__ = ['from_pandas', 'from_xarray', 'to_xarray']