Panlingo.LanguageIdentification.CLD2
0.0.0.18
See the version list below for details.
dotnet add package Panlingo.LanguageIdentification.CLD2 --version 0.0.0.18
NuGet\Install-Package Panlingo.LanguageIdentification.CLD2 -Version 0.0.0.18
<PackageReference Include="Panlingo.LanguageIdentification.CLD2" Version="0.0.0.18" />
paket add Panlingo.LanguageIdentification.CLD2 --version 0.0.0.18
#r "nuget: Panlingo.LanguageIdentification.CLD2, 0.0.0.18"
// Install Panlingo.LanguageIdentification.CLD2 as a Cake Addin #addin nuget:?package=Panlingo.LanguageIdentification.CLD2&version=0.0.0.18 // Install Panlingo.LanguageIdentification.CLD2 as a Cake Tool #tool nuget:?package=Panlingo.LanguageIdentification.CLD2&version=0.0.0.18
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:
- Install the Package: Ensure you have added the
Panlingo.LanguageIdentification.CLD2
package to your project using the provided installation command. - 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:
- diadistis/cld2.net: An unmaintained wrapper for .NET.
- nuvi/NCLD2: Another unmaintained wrapper for .NET (NuGet).
- curiosity-ai/catalyst: Contains CLD2, with an example available here.
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 | Versions 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. |
-
net5.0
- Panlingo.LanguageIdentification.CLD2.Native (>= 0.0.0.18)
-
net6.0
- Panlingo.LanguageIdentification.CLD2.Native (>= 0.0.0.18)
-
net7.0
- Panlingo.LanguageIdentification.CLD2.Native (>= 0.0.0.18)
-
net8.0
- Panlingo.LanguageIdentification.CLD2.Native (>= 0.0.0.18)
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.1.1 | 127 | 10/22/2024 |
0.1.0 | 90 | 10/7/2024 |
0.0.0.22 | 143 | 9/22/2024 |
0.0.0.21 | 133 | 9/10/2024 |
0.0.0.20 | 98 | 9/8/2024 |
0.0.0.19 | 114 | 9/1/2024 |
0.0.0.18 | 95 | 8/26/2024 |
0.0.0.17 | 126 | 8/21/2024 |
0.0.0.16 | 132 | 8/9/2024 |
0.0.0.15 | 109 | 8/8/2024 |
0.0.0.14 | 82 | 8/3/2024 |
0.0.0.13 | 91 | 8/1/2024 |
0.0.0.12 | 94 | 7/20/2024 |
0.0.0.10 | 86 | 7/14/2024 |
- Initial release