I downloaded a google-spreadsheet as an object in python.
How can I use openpyxl use the workbook without having it to save to disk first?
I know that xlrd c
Actually enough is to:
file = open('path/to/file.xlsx', 'rb') wb = openpyxl.load_workbook(filename=file)
and it will work. No need for BytesIO and stuff.