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""" 

2 pyexcel_io 

3 ~~~~~~~~~~~~~~~~~~~ 

4 

5 Uniform interface for reading/writing different excel file formats 

6 

7 :copyright: (c) 2014-2020 by Onni Software Ltd. 

8 :license: New BSD License, see LICENSE for more details 

9""" 

10import logging 

11 

12import pyexcel_io.plugins as plugins 

13 

14from .io import get_data, iget_data, save_data # noqa 

15from ._compact import NullHandler 

16 

17logging.getLogger(__name__).addHandler(NullHandler()) # noqa 

18 

19 

20BLACK_LIST = [__name__, "pyexcel_webio", "pyexcel_text"] 

21WHITE_LIST = [ 

22 "pyexcel_io.readers", 

23 "pyexcel_io.writers", 

24 "pyexcel_io.database", 

25] 

26PREFIX_PATTERN = "^pyexcel_.*$" 

27 

28plugins.load_plugins( 

29 PREFIX_PATTERN, __path__, BLACK_LIST, WHITE_LIST # noqa: F821 

30)