ParquetStore.__init__#

ParquetStore.__init__(directory: Path, mode: str = 'a', gitignore: bool = True)#

Initialize a storage interface for parquet-based table storage.

Parameters:
directoryPath

The file directory for this ParquetStore. If this location does not include a “.parquetpipeline” or “.zip” suffix, one is added.

mode{“a”, “r”}, default “a”

Mode to open this store, “a”ppend or “r”ead-only. Zipped stores can only be opened in read-only mode.

gitignorebool, default True

If not opened in read-only mode, should a “.gitignore” file be added with a global wildcard (**)? Doing so will help prevent this store from being accidentally committed to git.