I wanted to try out the python BytesIO class.
As an experiment I tried writing to a zip file in memory, and then reading the bytes back out of that zip file. So inst
You need to seek back to the beginning of the file after writing the initial in memory file...
myio.seek(0)