pyxlsb icon indicating copy to clipboard operation
pyxlsb copied to clipboard

Excel 2007+ Binary Workbook (xlsb) reader for Python

Results 13 pyxlsb issues
Sort by recently updated
recently updated
newest added

I have a .xlsb file which I am able to read as dataframe using pyxslb libray but after doing what I needed to do with the dataframe, I need to...

enhancement
help wanted

This PR adds a basic capability to create and write sheets to XLSB workbooks. Examples added to the README.md demonstrate writing data from pandas.DataFrame, numpy.ndarray, or list-of-lists to new sheets...

Hi, i am attempting to read a file (also as attachment in this ticket). The integer column (titled Site) is read correctly, but the fields containing string values are all...

enhancement

While running our project with `-W default` per the [recommendation of Python 3.9](https://docs.python.org/3/whatsnew/3.9.html#you-should-check-for-deprecationwarning-in-your-codel), we saw a few warnings about unclosed files which we traced to `pyxlsb`. Here's a simple demo...

documentation

It would be useful to have a way of checking which sheets are worksheets and which are chart sheets. Currently (1.0.8), both kinds of sheets appear in sheet_names and the...

enhancement

**Goal** 1. Read the values from an Excel named range into a nested list like [[1,2,3],[10,20,30]] or Pandas dataframe 2. Read the values from an Excel table into a nested...

enhancement

Allow me to see the Number Format for each cell, so that I can properly format the cell's contents, convert the cell to the proper type, and/or pass this along...

enhancement

This will serve as an umbrella issue for performance improvement. Currently there is a bit of copying which could potentially be avoided with BIFF record reading and there's also the...

enhancement
help wanted

Thanks for this great library which fill up the gap in the world of python + excel. My question is: how to find out date and time fields among floats?...

enhancement

I have a use case wher ei wanted to read the content only if the sheet is visible i shouldn't read the hidden values. Is there any parameter for this...