Kevin Ryan
Kevin Ryan
Hi - glad you like it and thanks for the feedback :) To get the first few rows from a standard xlsx file is easy (this is the example given...
Glad to hear it :) You can't read the (e.g.,) first 50 bytes to determine the first few rows because xlsx files are zip files (e.g., open them up with...
Hi - do you mean to change a value and save it back to the Excel file? If so, no - this package is focused on reading files rather than...
Yes, this one is tough. I also struggled with whether `ws.rows[0]` should return the first row or ws.rows[1] should. `ws.rows[0]` is definitely more pythonic, but it always seemed like more...