Search code examples
pythonpyfilesystem

Is PyFilesystem's Zip Filesystem indexed? Is it performant for random access reads?


Looking at PyFilesystem's zip filesystem. I want to know if the filesystem is reasonably performant for random access reads with large numbers of files (millions+).


Solution

  • ZipFS is a thin wrapper over Python's zip support. Random access read will be fast.