ParquetVerificationResult
Documentation for eth_defi.vault.base.ParquetVerificationResult Python class.
- class ParquetVerificationResult
Bases:
objectResult of verifying a parquet file after writing.
Returned by
verify_parquet_file()on success.Attributes summary
Path to the verified file.
Number of rows read back from the file metadata.
Number of columns in the file schema.
File size in bytes on disk.
Column names found in the file schema.
Methods summary
__init__(path, row_count, column_count, ...)- path: pathlib.Path
Path to the verified file.
- row_count: int
Number of rows read back from the file metadata.
- column_count: int
Number of columns in the file schema.
- file_size: int
File size in bytes on disk.