Skip to main content

Wrapper xlsxio library for python

Project description

python-xlsxio

Wrapper for c library xlsxio

Install

Before install python library you need to install c librarry

  • For Arch linux bases OS: yay xlsxio

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)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-xlsxio-0.0.3.tar.gz (4.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page