debian-python-pyexcel-xls/pyexcel_xls/__init__.py

32 lines
967 B
Python

"""
pyexcel_xls
~~~~~~~~~~~~~~~~~~~
The lower level xls/xlsx/xlsm file format handler using xlrd/xlwt
:copyright: (c) 2015-2016 by Onni Software Ltd
:license: New BSD License
"""
# flake8: noqa
# this line has to be place above all else
# because of dynamic import
_FILE_TYPE = 'xls'
__pyexcel_io_plugins__ = [_FILE_TYPE]
from pyexcel_io.io import get_data as read_data, isstream, store_data as write_data
def get_data(afile, file_type=None, **keywords):
"""standalone module function for reading module supported file type"""
if isstream(afile) and file_type is None:
file_type = _FILE_TYPE
return read_data(afile, file_type=file_type, **keywords)
def save_data(afile, data, file_type=None, **keywords):
"""standalone module function for writing module supported file type"""
if isstream(afile) and file_type is None:
file_type = _FILE_TYPE
write_data(afile, data, file_type=file_type, **keywords)