Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
ExcelWriter does not support BytesIO input #7074
Comments
|
this was attempted in #5992 so you can maybe resurrect some of that (that needed tests) |
jreback
added Excel Enhancement
labels
May 8, 2014
jreback
added this to the
0.15.0
milestone
May 8, 2014
jreback
changed the title from
ExcelWriter does not support `BytesIO` input to ExcelWriter does not support BytesIO input
May 8, 2014
jreback
added the
Good as first PR
label
Sep 21, 2014
jreback
modified the milestone: 0.16.0, Next Major Release
Mar 6, 2015
bashtage
referenced
this issue
Jun 17, 2015
Merged
ENH: Enable ExcelWriter to construct in-memory sheets #10376
jreback
modified the milestone: 0.17.0, Next Major Release
Jun 18, 2015
bashtage
pushed a commit
to bashtage/pandas
that referenced
this issue
Jun 20, 2015
|
|
+ |
9220309
|
jreback
closed this
in #10376
Jun 20, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
filmor commentedMay 8, 2014
At least XlsxWriter supports writing to buffers but the
ExcelWriterconstructors try to read the extension of the suppliedpath, so it fails when you initialise it asExcelWriter(buf, engine="xlsxwriter").Currently you can hack that into pandas using
but it would of course be nice if this just worked out-of-the-box. I'll try to build a PR for that.