File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -343,5 +343,5 @@ Support the project
343
343
================================================================================
344
344
345
345
If your company has embedded pyexcel and its components into a revenue generating
346
- product, please `support me on patreon <https://www.patreon.com/pyexcel >`_ to
346
+ product, please `support me on patreon <https://www.patreon.com/bePatron?u=5537627 >`_ to
347
347
maintain the project and develop it further.
Original file line number Diff line number Diff line change 10
10
# flake8: noqa
11
11
# this line has to be place above all else
12
12
# because of dynamic import
13
- from pyexcel_io .plugins import IORegistry
13
+ from pyexcel_io .plugins import IOPluginInfoChain
14
14
from pyexcel_io .io import get_data as read_data , isstream , store_data as write_data
15
15
16
16
__FILE_TYPE__ = 'xls'
17
- IORegistry (__name__ ).add_a_reader (
18
- submodule = 'xlsr.XLSBook' ,
17
+ IOPluginInfoChain (__name__ ).add_a_reader (
18
+ relative_plugin_class_path = 'xlsr.XLSBook' ,
19
19
file_types = [__FILE_TYPE__ , 'xlsx' , 'xlsm' ],
20
20
stream_type = 'binary'
21
21
).add_a_writer (
22
- submodule = 'xlsw.XLSWriter' ,
22
+ relative_plugin_class_path = 'xlsw.XLSWriter' ,
23
23
file_types = [__FILE_TYPE__ ],
24
24
stream_type = 'binary'
25
25
)
You can’t perform that action at this time.
0 commit comments