Scrubkit.Parquet
1.12.0
Prefix Reserved
dotnet add package Scrubkit.Parquet --version 1.12.0
NuGet\Install-Package Scrubkit.Parquet -Version 1.12.0
<PackageReference Include="Scrubkit.Parquet" Version="1.12.0" />
<PackageVersion Include="Scrubkit.Parquet" Version="1.12.0" />
<PackageReference Include="Scrubkit.Parquet" />
paket add Scrubkit.Parquet --version 1.12.0
#r "nuget: Scrubkit.Parquet, 1.12.0"
#:package Scrubkit.Parquet@1.12.0
#addin nuget:?package=Scrubkit.Parquet&version=1.12.0
#tool nuget:?package=Scrubkit.Parquet&version=1.12.0
Scrubkit.Parquet
Writes a Scrubkit FileRecord table to
Apache Parquet (columnar) for data-lake and analytics ingestion, using
Parquet.Net.
The core Scrubkit package already ships zero-dependency CSV and JSON writers
(TableWriter). Reach for this package only when you specifically need Parquet — it keeps
that dependency out of the core.
Install
dotnet add package Scrubkit.Parquet
Use it
using Scrubkit;
var table = await new FolderScrubber().ReadAsync(@"C:\Docs");
await ParquetTableWriter.WriteFileAsync(table, @"C:\out\files.parquet");
// or write to any stream:
await ParquetTableWriter.WriteAsync(table, stream);
Columns: Path, Name, Extension, Folder, SizeBytes, Modified, TypeBucket,
Text, Warnings, Redactions, ContentHash.
Modified is always stored in UTC — a Parquet timestamp is an instant, so read it back
and convert with value.ToLocalTime() if you need a local view. (The core's CSV/JSON
TableWriter additionally supports a utc: false option, since text formats can carry an
explicit offset; Parquet cannot.)
License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Parquet.Net (>= 6.0.3)
- Scrubkit.Abstractions (>= 1.12.0)
-
net8.0
- Parquet.Net (>= 6.0.3)
- Scrubkit.Abstractions (>= 1.12.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Scrubkit.Parquet:
| Package | Downloads |
|---|---|
|
Scrubkit.All
Convenience meta-package that references the entire Scrubkit family: the core (PDF/Office/text/image EXIF + CSV/JSON output), the extractor add-ons (.eml/.msg email, OpenDocument, .epub, legacy binary Office .doc/.xls/.ppt), the AddScrubkit dependency-injection integration, the Microsoft.Extensions.AI local redaction integration, the Semantic Kernel vector store integration, and — on net8.0/net10.0 — Parquet output. Install this to get everything out of the box; install the individual packages instead if you want a lean footprint. No code of its own. |
GitHub repositories
This package is not used by any popular GitHub repositories.
1.11.0 — Platform Expansion. Added .NET 10.0 (LTS) target framework support across all Scrubkit library packages, integration extensions, CLI tool, and test suites alongside net8.0 and netstandard2.0. Full changelog: https://github.com/jjopensoftworks-blip/Scrubkit/blob/main/CHANGELOG.md