Coverage for arrakis/__init__.py: 80.0%

15 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-08-13 15:09 -0700

1# Copyright (c) 2022, California Institute of Technology and contributors 

2# 

3# You should have received a copy of the licensing terms for this 

4# software included in the file "LICENSE" located in the top-level 

5# directory of this package. If you did not, you can view a copy at 

6# https://git.ligo.org/ngdd/arrakis-python/-/raw/main/LICENSE 

7 

8try: 

9 from ._version import version as __version__ 

10except ModuleNotFoundError: 

11 import setuptools_scm 

12 

13 __version__ = setuptools_scm.get_version(fallback_version="?.?.?") 

14 

15from .api import count as count 

16from .api import describe as describe 

17from .api import fetch as fetch 

18from .api import find as find 

19from .api import stream as stream 

20from .block import SeriesBlock as SeriesBlock 

21from .block import Time as Time 

22from .channel import Channel as Channel 

23from .client import Client as Client 

24from .publish import Publisher as Publisher