GroupDocs.Parser-Cloud 19.11.0

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

// Install GroupDocs.Parser-Cloud as a Cake Tool
#tool nuget:?package=GroupDocs.Parser-Cloud&version=19.11.0

Document Parser .NET Cloud REST API

This document parser & data extraction REST API can be used to enhance your C#, ASP.NET, & other .NET cloud-based applications to perform parsing operations.

Cloud Document Parser Features

  • Create easy to define templates with data field and table definitions.
  • Parse documents with pre-defined templates.
  • Extract data from invoices or from other sort of documents.
  • Supports extracting text and images.
  • Extract data from regular documents as well as from email or archive containers.
  • Obtain data from PDF portfolios.
  • Fetch text fields, numbers and tables from common documents.
  • Save your templates in the storage and parse your documents with them.
  • Ability to extract HTML or Markdown (MD) text for a quick preview.
  • Fetch specific pages of plain as well as formatted text.
  • Extract formatted (bold, italic, hyperlink etc.) text in the MD format.
  • Support for extracting text in HTML formatting (paragraph, hyperlinks, lists etc.).
  • Retrieve all images from a document and save them.
  • Obtain basic information about documents, archives, emails, and attachments etc.
  • Extract data from a document contained inside a ZIP archive, email or PDF portfolio.

Parse Document By Template Supported Formats

Word Processing: DOC, DOT, DOCX, DOCM, DOTX, DOTM, ODT, OTT, RTF Spreadsheet: XLS, XLT, XLSX, XLSM, XLSB, XLTX, XLTM, ODS, OTS, CSV, XLA, XLAM, NUMBERS Presentation: PPT, PPS, POT, PPTX, PPTM, POTX, POTM, PPSX, PPSM, ODP, OTP Portable: PDF

Extract Text Supported Formats

Word Processing: DOC, DOT, DOCX, DOCM, DOTX, DOTM, TXT, ODT, OTT, RTF Spreadsheet: XLS, XLT, XLSX, XLSM, XLSB, XLTX, XLTM, ODS, OTS, CSV, XLA, XLAM, NUMBERS Presentation: PPT, PPS, POT, PPTX, PPTM, POTX, POTM, PPSX, PPSM, ODP, OTP Portable: PDF Markup: HTML, XHTML, MHTML, MD, XML eBook: CHM, EPUB, FB2 Emails: EML, EMLX, MSG Notes: ONE

Extract Document Info Supported Formats

Word Processing: DOC, DOT, DOCX, DOCM, DOTX, DOTM, TXT, ODT, OTT, RTF Spreadsheet: XLS, XLT, XLSX, XLSM, XLSB, XLTX, XLTM, ODS, OTS, CSV, XLA, XLAM, NUMBERS Presentation: PPT, PPS, POT, PPTX, PPTM, POTX, POTM, PPSX, PPSM, ODP, OTP Portable: PDF Markup: HTML, XHTML, MHTML, MD, XML eBook: CHM, EPUB, FB2 Emails: PST, OST, EML, EMLX, MSG Notes: ONE Archives: ZIP

Extract Images Supported Formats

Word Processing: DOC, DOT, DOCX, DOCM, DOTX, DOTM, TXT, ODT, OTT, RTF Spreadsheet: XLS, XLT, XLSX, XLSM, XLSB, XLTX, XLTM, ODS, OTS, CSV, XLA, XLAM, NUMBERS Presentation: PPT, PPS, POT, PPTX, PPTM, POTX, POTM, PPSX, PPSM, ODP, OTP Portable: PDF Emails: EML, EMLX, MSG Archives: ZIP

Extract Container Items Info Supported Formats

Portable: PDF Emails: PST, OST, EML, EMLX, MSG Archives: ZIP

Platform Independence

GroupDocs.Parser Cloud's platform independent document manipulation API is a true REST API that can be used from any platform. You can use it with any language or platform that supports REST, be it the web, desktop, mobile, or the cloud. The API integrates with other cloud services to provide you the flexibility you require for processing documents. It is suitable for the most types of businesses, documents, or content.

Getting Started

You do not need to install anything to get started with GroupDocs.Parser Cloud SDK for .Net. Just create an account at GroupDocs for Cloud and get your application information.

Simply execute Install-Package GroupDocs.Parser-Cloud from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Parser assembly in your project. If you already have GroupDocs.Parser Cloud SDK for .Net and want to upgrade it, please execute Update-Package GroupDocs.Parser-Cloud to get the latest version.

Please check the GitHub Repository for other common usage scenarios.

Extract Text From The Whole Document

string MyAppKey = "";
string MyAppSid = "";
  
var configuration = new Configuration(MyAppSid, MyAppKey);
  
var apiInstance = new ParseApi(configuration);
var fileInfo = new FileInfo
{
    FilePath = "words/one-page.docx"
};

var options = new TextOptions
{
    FileInfo = fileInfo
};

var request = new TextRequest(options);
var response = apiInstance.Text(request);

Parse by Template of a DOCX Inside a ZIP Container

string MyAppKey = "";
string MyAppSid = "";
  
var configuration = new Configuration(MyAppSid, MyAppKey);
  
var apiInstance = new ParseApi(configuration);
var fileInfo = new FileInfo

{
    FilePath = "containers/archive/sample.zip",
};

var templatePath = "templates/document-template.json";
var options = new ParseOptions

{
    FileInfo = fileInfo,
    TemplatePath = templatePath,
    ContainerItemInfo = new ContainerItemInfo
    {
        RelativePath = "companies.docx"
    }
};

var request = new ParseRequest(options);
var response = apiInstance.Parse(request);

Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial

Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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
23.7.0 233 7/11/2023
22.12.0 325 12/19/2022
22.3.0 458 3/14/2022
20.6.0 1,234 6/16/2020
19.11.0 499 12/12/2019