Panlingo.LanguageIdentification.CLD2 0.0.0.17

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

// Install Panlingo.LanguageIdentification.CLD2 as a Cake Tool
#tool nuget:?package=Panlingo.LanguageIdentification.CLD2&version=0.0.0.17                

Panlingo.LanguageIdentification.CLD2

Welcome to Panlingo.LanguageIdentification.CLD2, a .NET wrapper for the Chrome Language Detection (CLD2) library by Google Inc. This package seamlessly integrates language identification capabilities into .NET applications, enabling accurate and efficient recognition of over 80 languages with minimal effort. Perfect for applications dealing with multilingual texts or requiring automatic language detection.

Requirements

  • .NET >= 5.0
  • Linux

Installation

To integrate the CLD2 functionality, you need to add this NuGet package to your project:

dotnet add package Panlingo.LanguageIdentification.CLD2

Usage

Integrating the CLD2 library into your .NET application is straightforward. Here’s a quick guide to get you started:

  1. Install the Package: Ensure you have added the Panlingo.LanguageIdentification.CLD2 package to your project using the provided installation command.
  2. Initialize the Library: Follow the example snippet to initialize and use the CLD2 library for detecting languages.
using Panlingo.LanguageIdentification.CLD2;

class Program
{
    static void Main()
    {
        // Create an instance of the language detector
        using var cld2 = new CLD2Detector();

        // Input text to detect language
        var predictions = cld2.PredictLanguage("Привіт, як справи?");

        // Print the language
        foreach (var prediction in predictions)
        {
            Console.WriteLine(
                $"Language: {prediction.Language}, " + 
                $"Probability: {prediction.Probability}, " +
                $"IsReliable: {prediction.IsReliable}, " + 
                $"Proportion: {prediction.Proportion}"
            );
        }
    }
}

Alternatives

If you are exploring other options, here are some alternatives to consider:

Supported languages

Language Name Output Code (ISO 639-1)
Afrikaans af
Albanian sq
Arabic ar
Armenian hy
Azerbaijani az
Basque eu
Belarusian be
Bengali bn
Bihari bh
Bulgarian bg
Catalan ca
Cebuano ceb
Cherokee chr
Croatian hr
Czech cs
Chinese zh
Chinese_T zh-Hant
Danish da
Dhivehi dv
Dutch nl
English en
Estonian et
Finnish fi
French fr
Galician gl
Ganda lg
Georgian ka
German de
Greek el
Gujarati gu
Haitian_Creole ht
Hebrew iw
Hindi hi
Hmong hmn
Hungarian hu
Icelandic is
Indonesian id
Inuktitut iu
Irish ga
Italian it
Javanese jw
Japanese ja
Kannada kn
Khmer km
Kinyarwanda rw
Korean ko
Laothian lo
Latvian lv
Limbu lif
Lithuanian lt
Macedonian mk
Malay ms
Malayalam ml
Maltese mt
Marathi mr
Nepali ne
Norwegian no
Oriya or
Persian fa
Polish pl
Portuguese pt
Punjabi pa
Romanian ro
Russian ru
Scots_Gaelic gd
Serbian sr
Sinhalese si
Slovak sk
Slovenian sl
Spanish es
Swahili sw
Swedish sv
Syriac syr
Tagalog tl
Tamil ta
Telugu te
Thai th
Turkish tr
Ukrainian uk
Urdu ur
Vietnamese vi
Welsh cy
Yiddish yi

We value your feedback. Feel free to open issues or contribute to the repository. Let’s make language detection in .NET even more powerful and versatile! 🌍📝

Happy coding! 👩‍💻👨‍💻


Stay updated by following our repository. For any inquiries or support, reach out through the issues page.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows 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
0.0.0.22 133 9/22/2024
0.0.0.21 124 9/10/2024
0.0.0.20 90 9/8/2024
0.0.0.19 109 9/1/2024
0.0.0.18 93 8/26/2024
0.0.0.17 125 8/21/2024
0.0.0.16 129 8/9/2024
0.0.0.15 104 8/8/2024
0.0.0.14 79 8/3/2024
0.0.0.13 88 8/1/2024
0.0.0.12 92 7/20/2024
0.0.0.10 84 7/14/2024

- Initial release