Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# (c) Stefan Countryman 2019 

2 

3""" 

4Input/output operation interfaces for generating files and monitoring file 

5state. Provides a unified way of working with and translating between different 

6storage engines and execution strategies. 

7""" 

8 

9from .registry import ( 

10 register, 

11 get_io, 

12 get_schemes, 

13) 

14from . import default 

15 

16__all__ = [ 

17 'register', 

18 'get_io', 

19 'get_schemes', 

20 'default', 

21]