Questions tagged [pyfilesystem]

Questions related to the PyFilesystem python library, which is a standardized file system on top of many other types of filesystem (OS, Temp, AWS S3, etc.).

18 questions
0
votes
2 answers

How to work with memory mapped files (numpy.memmap) in PyFilesystem?

Can I use PyFilesystem with numpy memory mapped files? The sample code below throws io.UnsupportedOperation: fileno which is due to PyFilesystem throwing the unsupported exception for the fileno operation on the IO Stream object. import numpy as…
David Parks
  • 30,789
  • 47
  • 185
  • 328
0
votes
1 answer

What is the URL format for a tar filesystem in PyFilesystem?

Is there a URL format for the TarFilesystem in PyFilesystem? I see other examples here, but not for TarFilesystem.
David Parks
  • 30,789
  • 47
  • 185
  • 328
0
votes
1 answer

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+).
David Parks
  • 30,789
  • 47
  • 185
  • 328
1
2