OfficeIMO.Reader
0.1.5
Prefix Reserved
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.7.2
This package targets .NET Framework 4.7.2. The package is compatible with this framework or higher.
dotnet add package OfficeIMO.Reader --version 0.1.5
NuGet\Install-Package OfficeIMO.Reader -Version 0.1.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OfficeIMO.Reader" Version="0.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OfficeIMO.Reader" Version="0.1.5" />
<PackageReference Include="OfficeIMO.Reader" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OfficeIMO.Reader --version 0.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OfficeIMO.Reader, 0.1.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OfficeIMO.Reader@0.1.5
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OfficeIMO.Reader&version=0.1.5
#tool nuget:?package=OfficeIMO.Reader&version=0.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OfficeIMO.Reader
OfficeIMO.Reader is an optional, read-only facade that normalizes extraction across:
- Word (
.docx,.docm) → Markdown chunks - Excel (
.xlsx,.xlsm) → table chunks + optional Markdown table previews - PowerPoint (
.pptx,.pptm) → slide-aligned Markdown chunks (optionally including notes) - Markdown (
.md,.markdown) → heading-aware text chunks - PDF (
.pdf) → page-aware text chunks
The goal is to make it easy for tools like chat bots to ingest content deterministically.
Quick Start
using OfficeIMO.Reader;
foreach (var chunk in DocumentReader.Read(@"C:\Docs\Policy.docx")) {
Console.WriteLine(chunk.Id);
Console.WriteLine(chunk.Location.HeadingPath);
Console.WriteLine(chunk.Markdown ?? chunk.Text);
}
Streams / Bytes
using OfficeIMO.Reader;
// Stream (does not close the stream)
using var fs = File.OpenRead(@"C:\Docs\Policy.docx");
var chunksFromStream = DocumentReader.Read(fs, "Policy.docx").ToList();
// Bytes
var bytes = File.ReadAllBytes(@"C:\Docs\Policy.docx");
var chunksFromBytes = DocumentReader.Read(bytes, "Policy.docx").ToList();
Folders
using OfficeIMO.Reader;
var chunks = DocumentReader.ReadFolder(
folderPath: @"C:\Docs",
folderOptions: new ReaderFolderOptions {
Recurse = true,
MaxFiles = 500,
MaxTotalBytes = 500L * 1024 * 1024,
SkipReparsePoints = true,
DeterministicOrder = true
},
options: new ReaderOptions {
MaxChars = 8_000
}).ToList();
Folder Progress + Detailed Summary
using OfficeIMO.Reader;
var result = DocumentReader.ReadFolderDetailed(
folderPath: @"C:\KnowledgeBase",
folderOptions: new ReaderFolderOptions { Recurse = true, MaxFiles = 10_000 },
options: new ReaderOptions { ComputeHashes = true },
includeChunks: true,
onProgress: p => Console.WriteLine($"{p.Kind}: scanned={p.FilesScanned}, parsed={p.FilesParsed}, skipped={p.FilesSkipped}, chunks={p.ChunksProduced}"));
Console.WriteLine($"Files parsed: {result.FilesParsed}");
Console.WriteLine($"Files skipped: {result.FilesSkipped}");
Console.WriteLine($"Chunks: {result.ChunksProduced}");
Database-Ready Folder Streaming
using OfficeIMO.Reader;
foreach (var doc in DocumentReader.ReadFolderDocuments(
folderPath: @"C:\KnowledgeBase",
folderOptions: new ReaderFolderOptions { Recurse = true, MaxFiles = 10_000, DeterministicOrder = true },
options: new ReaderOptions { ComputeHashes = true, MaxChars = 4_000 },
onProgress: p => Console.WriteLine($"{p.Kind}: parsed={p.FilesParsed}, skipped={p.FilesSkipped}, chunks={p.ChunksProduced}"))) {
if (!doc.Parsed) {
Console.WriteLine($"SKIP {doc.Path}: {string.Join("; ", doc.Warnings ?? Array.Empty<string>())}");
continue;
}
// Upsert your "sources" table keyed by doc.SourceId/doc.SourceHash,
// then upsert chunk rows from doc.Chunks keyed by chunk.ChunkHash.
Console.WriteLine($"{doc.Path} => {doc.ChunksProduced} chunks, ~{doc.TokenEstimateTotal} tokens");
}
AI Ingestion Pattern (With Citations)
using OfficeIMO.Reader;
using System.Text;
var chunks = DocumentReader.ReadFolder(
folderPath: @"C:\KnowledgeBase",
folderOptions: new ReaderFolderOptions { Recurse = true, DeterministicOrder = true },
options: new ReaderOptions { MaxChars = 4000 }).ToList();
var context = new StringBuilder();
foreach (var chunk in chunks) {
var source = chunk.Location.Path ?? "unknown";
var pointer = chunk.Location.Page.HasValue
? $"page {chunk.Location.Page.Value}"
: chunk.Location.HeadingPath ?? $"block {chunk.Location.BlockIndex ?? 0}";
context.AppendLine($"[source: {source} | {pointer}]");
context.AppendLine(chunk.Markdown ?? chunk.Text);
context.AppendLine();
}
Options
using OfficeIMO.Reader;
var options = new ReaderOptions {
MaxChars = 8_000,
MaxTableRows = 200,
IncludeWordFootnotes = true,
IncludePowerPointNotes = true,
ExcelHeadersInFirstRow = true,
ExcelChunkRows = 200,
ExcelSheetName = "Data",
ExcelA1Range = "A1:Z500",
MarkdownChunkByHeadings = true,
ComputeHashes = true
};
var chunks = DocumentReader.Read(@"C:\Docs\Workbook.xlsx", options).ToList();
Notes
DocumentReader.Read(...)is synchronous and streaming (returnsIEnumerable<T>).DocumentReader.ReadFolder(...)is best-effort: unreadable/corrupt/oversized files emit warning chunks and ingestion continues.DocumentReader.ReadFolderDocuments(...)yields one source payload at a time (ReaderSourceDocument) for easy DB upserts.DocumentReader.ReadFolderDetailed(...)returns ingestion counts/file statuses and can surface progress callback events.- Chunks include
SourceId/SourceHash/ChunkHash+ token estimate for incremental indexing and prompt budgeting. - The reader is best-effort and does not attempt OCR.
- Legacy binary formats (
.doc,.xls,.ppt) are not supported.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.7.2
- OfficeIMO.Excel (>= 0.6.10)
- OfficeIMO.Markdown (>= 0.5.10)
- OfficeIMO.Pdf (>= 0.1.5)
- OfficeIMO.PowerPoint (>= 1.0.5)
- OfficeIMO.Word (>= 1.0.30)
- OfficeIMO.Word.Markdown (>= 1.0.4)
-
.NETStandard 2.0
- OfficeIMO.Excel (>= 0.6.10)
- OfficeIMO.Markdown (>= 0.5.10)
- OfficeIMO.Pdf (>= 0.1.5)
- OfficeIMO.PowerPoint (>= 1.0.5)
- OfficeIMO.Word (>= 1.0.30)
- OfficeIMO.Word.Markdown (>= 1.0.4)
-
net10.0
- OfficeIMO.Excel (>= 0.6.10)
- OfficeIMO.Markdown (>= 0.5.10)
- OfficeIMO.Pdf (>= 0.1.5)
- OfficeIMO.PowerPoint (>= 1.0.5)
- OfficeIMO.Word (>= 1.0.30)
- OfficeIMO.Word.Markdown (>= 1.0.4)
-
net8.0
- OfficeIMO.Excel (>= 0.6.10)
- OfficeIMO.Markdown (>= 0.5.10)
- OfficeIMO.Pdf (>= 0.1.5)
- OfficeIMO.PowerPoint (>= 1.0.5)
- OfficeIMO.Word (>= 1.0.30)
- OfficeIMO.Word.Markdown (>= 1.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.