0

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+).

David Parks
  • 30,789
  • 47
  • 185
  • 328

1 Answers1

1

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

Will McGugan
  • 2,005
  • 13
  • 10