Noggle.TikaOnDotnet.Parser 1.20.4

dotnet add package Noggle.TikaOnDotnet.Parser --version 1.20.4
NuGet\Install-Package Noggle.TikaOnDotnet.Parser -Version 1.20.4
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="Noggle.TikaOnDotnet.Parser" Version="1.20.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Noggle.TikaOnDotnet.Parser --version 1.20.4
#r "nuget: Noggle.TikaOnDotnet.Parser, 1.20.4"
#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 Noggle.TikaOnDotnet.Parser as a Cake Addin
#addin nuget:?package=Noggle.TikaOnDotnet.Parser&version=1.20.4

// Install Noggle.TikaOnDotnet.Parser as a Cake Tool
#tool nuget:?package=Noggle.TikaOnDotnet.Parser&version=1.20.4

Wrapper and helper functions for running Apache Tika text extraction and parsing on .NET through Noggle.TikaOnDotNet.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 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
1.20.4 1,405 5/10/2019
1.20.3 3,123 5/7/2019

Quickstart:

```cs

using Noggle.TikaOnDotNet.Parser;


var tika = new Tika();



//simple wrapper for file/stream/bytearray text extraction
string
textFile = tika.ParseToString(stringToFile);

string textStream = tika.ParseToString(streamObject);

string textByteArray =tika.ParseToString(byteArrayObject);



//Parse a file/webURL/.NET stream with text and metadata results

var localFileContents = tika.Parse(stringToFile);

var webPageContents = tika.Parse(new Uri("https://google.com/"));

var streamDocResults = tika.Parse(new FileStream(file, FileMode.Open, FileAccess.Read));


```



- Wrapper functions to use TikaOnDotNet via Noggle.TikaOnDotNet.Parser

- Tika updated to v 1.20. See the official Tika site http://tika.apache.org/1.20/