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.
<PackageVersion Include="Noggle.TikaOnDotnet.Parser" Version="1.20.4" />
                    
Directory.Packages.props
<PackageReference Include="Noggle.TikaOnDotnet.Parser" />
                    
Project file
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 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.
#addin nuget:?package=Noggle.TikaOnDotnet.Parser&version=1.20.4
                    
Install as a Cake Addin
#tool nuget:?package=Noggle.TikaOnDotnet.Parser&version=1.20.4
                    
Install as a Cake Tool

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,846 5/10/2019
1.20.3 3,533 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/