I am trying to compress an archive to a ".zip" file (or several) with a maximum size (eg 1024mb) with Python.
The only libraries I have found are gzip, shutil and zipfile, but I cannot find any option in them that allows me to split these files with a maximum size.
I don't want to use functionalities of the operating system, I would like to do it with a python library. Is this possible?
Thank you very much.