Mindee 2.2.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
Additional Details

Problems with RestSharp fixed in 2.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Mindee --version 2.2.0
NuGet\Install-Package Mindee -Version 2.2.0
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="Mindee" Version="2.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mindee --version 2.2.0
#r "nuget: Mindee, 2.2.0"
#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.
// Install Mindee as a Cake Addin
#addin nuget:?package=Mindee&version=2.2.0

// Install Mindee as a Cake Tool
#tool nuget:?package=Mindee&version=2.2.0

License: MIT GitHub Workflow Status NuGet NuGet

Mindee API Helper Library for .NET

Quickly and easily connect to Mindee's API services using .NET.

Requirements

The following .NET versions are tested and supported:

  • Standard 2.0
  • 4.7.2, 4.8 (Windows only)
  • 6.0, 7.0 (Linux, macOS, Windows)

Quick Start

Here's the TL;DR of getting started.

First, get an API Key

Then, install this library:

dotnet add package Mindee

Define the API Key

The API key is retrieved using IConfiguration. So you could define it in multiple ways:

  • From an environment variable
MindeeApiSettings__ApiKey
  • From an appsettings.json file
"MindeeApiSettings": {
    "ApiKey": ""m-api-key"
},

Instantiate The Client

You can instantiate the client either manually or by using dependency injection.

Dependency Injection

In your Startup.cs or Program.cs file, configure the dependency injection (DI) as follows:

services.AddMindeeClient();

This call will configure the client entry point and the PDF library used internally.

Then, in your controller or service instance, pass as an argument the class MindeeClient.

Manually

Or, you could also simply instantiate a new instance of MindeeClient:

using Mindee;

var mindeeClient = MindeeClientInit.Create("my-api-key");

Loading a File and Parsing It

Global Documents
using Mindee;
using Mindee.Parsing.Invoice;

string apiKey = "my-api-key";
string filePath = "/path/to/the/file.ext";

MindeeClient mindeeClient = MindeeClientInit.Create(apiKey);

var documentParsed = await mindeeClient
    .LoadDocument(File.OpenRead(filePath), System.IO.Path.GetFileName(filePath))
    .ParseAsync<InvoiceV4Inference>();

System.Console.WriteLine(documentParsed.ToString());
Region-Specific Documents
using Mindee;
using Mindee.Parsing.Us.BankCheck;

string apiKey = "my-api-key";
string filePath = "/path/to/the/file.ext";

MindeeClient mindeeClient = MindeeClientInit.Create(apiKey);

var documentParsed = await mindeeClient
    .LoadDocument(File.OpenRead(filePath), System.IO.Path.GetFileName(filePath))
    .ParseAsync<BankCheckV1Inference>();

System.Console.WriteLine(documentParsed.ToString());
Custom Document (API Builder)
using Mindee;
using Mindee.Parsing;

string apiKey = "my-api-key";
string filePath = "/path/to/the/file.ext";

MindeeClient mindeeClient = MindeeClientInit.Create(apiKey);

CustomEndpoint myEndpoint = new CustomEndpoint(
    endpointName: "my-endpoint",
    accountName: "my-account"
);

var documentParsed = await mindeeClient
    .LoadDocument(new FileInfo(filePath))
    .ParseAsync(myEndpoint);

System.Console.WriteLine(documentParsed.ToString());

Further Reading

Complete details on the working of the library are available in the following guides:

You can view the source code on GitHub.

You can also take a look at the Reference Documentation.

License

Copyright © Mindee

Available as open source under the terms of the MIT License.

Questions?

Join our Slack

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 was computed.  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. 
.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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.13.0 83 4/30/2024
3.12.0 188 4/8/2024
3.11.1 150 4/5/2024
3.11.0 139 3/26/2024
3.10.0 404 3/6/2024
3.9.0 244 1/30/2024
3.8.0 679 12/20/2023
3.7.1 101 12/20/2023
3.7.0 259 11/22/2023
3.6.0 164 11/17/2023
3.5.0 108 11/13/2023
3.4.0 292 10/20/2023
3.3.0 311 9/22/2023
3.2.0 176 9/13/2023
3.1.0 476 8/9/2023
3.0.0 1,091 7/28/2023
2.2.1 434 5/30/2023
2.2.0 378 3/16/2023
2.1.2 125 3/9/2023
2.1.1 122 3/8/2023
2.1.1-preview2 142 3/8/2023
2.1.1-preview1 171 3/8/2023
2.1.0 147 2/20/2023
2.0.0 1,942 2/3/2023
1.4.0 340 1/4/2023
1.3.0 338 12/22/2022
1.2.0 321 12/9/2022
1.1.0 379 11/28/2022
1.0.0 371 11/17/2022
1.0.0-rc1 126 11/16/2022

CHANGELOG.md