Skip to content

ahmadakhmiev/scanii-dotnet

 
 

Repository files navigation

Dotnet client for the https://scanii.com content processing service

How to use this client

This library is installable via Nuget and can be installed via the usual tools, details here: https://www.nuget.org/packages/UvaSoftware.Scanii/

For example, using the dotnet CLI:

dotnet add package UvaSoftware.Scanii --version $LATEST_VERSION

Basic usage:

 // creating the client
var _client = new ScaniiClient(ScaniiTarget.V21, KEY, SECRET);
 
 // scans a file
var result = _client.Process("file.doc")
Console.WriteLine(result);

Please note that you will need a valid scanii.com account and API Credentials.

More advanced usage examples can be found here

General documentation on scanii can be found here

About

.NET interface to the scanii.com content processing service

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 97.1%
  • Shell 2.9%