Code Monkey home page Code Monkey logo

detectlanguage-dotnet's Introduction

Detect Language API Client for .NET

NuGet Build Status

Detects language of the given text. Returns detected language codes and scores.

Installation

Using the .NET Core command-line interface (CLI) tools:

dotnet add package DetectLanguage

Using the NuGet Command Line Interface (CLI):

nuget install DetectLanguage

Using the Package Manager Console:

Install-Package DetectLanguage

From within Visual Studio:

  1. Open the Solution Explorer.
  2. Right-click on a project within your solution.
  3. Click on Manage NuGet Packages...
  4. Click on the Browse tab and search for "DetectLanguage".
  5. Click on the DetectLanguage package, select the appropriate version in the right-tab and click Install.

Documentation

For a comprehensive list of examples, check out the API documentation.

Configuration

Before using Detect Language API client you have to setup your personal API key. You can get it for free by signing up at https://detectlanguage.com

using DetectLanguage;

DetectLanguageClient client = new DetectLanguageClient("YOUR API KEY");

Usage

Language detection

DetectResult[] results = await client.DetectAsync("Buenos dias señor");

Single language code detection

If you need just a language code you can use DetectCodeAsync. It returns first detected language code.

string languageCode = await client.DetectCodeAsync("Buenos dias señor");

Batch detection

It is possible to detect language of several texts with one request. This method is significantly faster than doing one request per text. To use batch detection just pass multiple texts to BatchDetectAsync method.

string[] texts = {"labas rytas", "good morning"};
DetectResult[][] results = await client.BatchDetectAsync(texts);

Getting your account status

UserStatus userStatus = await client.GetUserStatusAsync();

Getting list supported languages

Language[] languages = await client.GetLanguagesAsync();

License

Detect Language API .NET Client is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.

detectlanguage-dotnet's People

Contributors

laurynas avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.