How to get size of BytesIO in Python
If you want to find out the size of the data stored in a io.BytesIO
instance in Python, use
my_bytesio.getbuffer().nbytes
If you want to find out the size of the data stored in a io.BytesIO
instance in Python, use
my_bytesio.getbuffer().nbytes