Metadata-Version: 2.1
Name: python-xlsxio
Version: 0.0.4
Summary: Wrapper xlsxio library for python
Home-page: https://github.com/Chiorufarewerin/python-xlsxio
Author: Artur Beltsov
Author-email: artur1998g@gmail.com
License: MIT
Project-URL: GitHub, https://github.com/Chiorufarewerin/python-xlsxio
Description: # python-xlsxio
        
        Wrapper for c library [xlsxio](https://github.com/brechtsanders/xlsxio)
        
        ## Install
        
        You need cython: `pip install Cython`
        
        And run: `pip install python-xlsxio`
        
        ## Example
        
        ```
        import xlsxio
        xlsxio_reader = xlsxio.XlsxioReader('file.xlsx')
        sheet = xlsxio_reader.get_sheet()
        data = sheet.read_data()
        sheet.close()
        xlsxio_reader.close()
        
        print(data)
        ```
        
        Or simply:
        
        ```
        import xlsxio
        with xlsxio.XlsxioReader('file.xlsx') as reader: 
            with reader.get_sheet() as sheet: 
                data = sheet.read_data() 
        
        print(data)
        ```
Keywords: xlsxio,python,c
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
