willtrnr/pyxlsb

How can I read the binary workbook after opening it

Closed this issue · 1 comments

How can I read the binary workbook after opening it

This is a pretty vague request, though I'll agree that documentation is very scarce.

The common usage would look like this:

from pyxlsb import open_workbook
with open_workbook('Book1.xlsb') as wb:
    with wb.get_sheet('Sheet1') as sheet:
        for row in sheet.rows():
            print(row[0].v)

If you don't mind I'll close this since it's not really an issue.