YaDictionarySDKNetFramework 1.0.7

dotnet add package YaDictionarySDKNetFramework --version 1.0.7
NuGet\Install-Package YaDictionarySDKNetFramework -Version 1.0.7
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="YaDictionarySDKNetFramework" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add YaDictionarySDKNetFramework --version 1.0.7
#r "nuget: YaDictionarySDKNetFramework, 1.0.7"
#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 YaDictionarySDKNetFramework as a Cake Addin
#addin nuget:?package=YaDictionarySDKNetFramework&version=1.0.7

// Install YaDictionarySDKNetFramework as a Cake Tool
#tool nuget:?package=YaDictionarySDKNetFramework&version=1.0.7

YaDictionarySDK

YaDictionarySDK is a .NET Framework 4.8 C# library which provides access for Yandex Dictionary API:

https://yandex.com/dev/dictionary/

This project includes C# library with methods for Yandex Dictionary API and unit tests for this code.

How to use

var yaSdk = new YaDictionary(apiKey);
var languages = await yaSdk.GetLanguagesAsync();
    
string languagePair = "de-ru";
string wordToTranslate = "Traum";
var translation = await yaSdk.GetTranslationAsync(wordToTranslate, languagePair);

Prerequisites

Requires .NET Framework 4.8. HttpClient was used in this library. The Api key for tests should be placed into environment variable with name "YA_DICTIONARY_API_KEY".

Terms of Use

As decribed in the <a href="https://yandex.com/legal/dictionary_api/">Terms of Use for Yandex Dictionary service</a> the following text: “Powered by Yandex.Dictionary” with the clickable hyperlink to the page http://api.yandex.com/dictionary must be shown strictly over or under the dictionary articles.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
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
1.0.7 155 8/6/2023
1.0.6 260 8/5/2023
1.0.5 317 11/2/2022
1.0.4 391 10/8/2022
1.0.3 407 10/7/2022
1.0.2 458 9/18/2022
1.0.1 389 6/5/2022
1.0.0 370 6/4/2022

Sync methods were added