pyarrow.memory_map#
- pyarrow.memory_map(path, mode='r')#
 Open memory map at file path. Size of the memory map cannot change.
- Parameters
 - path
str - mode{βrβ, βr+β, βwβ}, default βrβ
 Whether the file is opened for reading (βr+β), writing (βwβ) or both (βr+β).
- path
 - Returns
 - mmap
MemoryMappedFile 
- mmap