Coverage for python/lsst/daf/butler/__init__.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-04-07 00:58 -0700

1""" 

2Data Access Butler 

3""" 

4 

5# Some components are not auto-imported since they can have additional runtime 

6# dependencies. 

7 

8from ._butler import * 

9from ._butlerConfig import * 

10from ._butlerRepoIndex import * 

11from ._deferredDatasetHandle import * 

12from ._limited_butler import * 

13from ._quantum_backed import * 

14from .core import * 

15 

16# Import the registry subpackage directly for other symbols. 

17from .registry import ( 

18 CollectionSearch, 

19 CollectionType, 

20 DatasetIdFactory, 

21 DatasetIdGenEnum, 

22 Registry, 

23 RegistryConfig, 

24) 

25from .transfers import YamlRepoExportBackend, YamlRepoImportBackend 

26from .version import *