A fully-featured .NET client for the DeepL translation service. DeepL is a commercial translation service based on deep learning. This API client only supports v2 of the API as v1 has been deprecated for new DeepL API plans available from October 2018.
- .NET Core and .NET Framework compatible
- Completely asynchronous (using the async-await pattern)
- Covers the complete surface area of the DeepL API
- Translate text (including text with XML markup)
- Translate documents (Word, PowerPoint, HTML, and raw text documents)
To get started you have to add the package reference to your project:
Install-Package DeepL -Version 0.2.1 # Package Manager
dotnet add package DeepL --version 0.2.1 # .NET CLI
paket add DeepL --version 0.2.1 # Paket CLI
or manually add a reference to your project file:
<PackageReference Include="DeepL" Version="0.2.1" />
Then you can start translating texts:
using DeepL;
namespace Application
{
public class Program
{
public static void Main(string[] arguments) => Program.MainAsync(arguments).Wait();
public static async Task MainAsync(string[] arguments)
{
using (DeepLClient client = new DeepLClient("<authentication key>"))
{
try
{
Translation translation = await client.TranslateAsync(
"This is a test sentence.",
Language.German
);
Console.WriteLine(translation.DetectedSourceLanguage);
Console.WriteLine(translation.Text);
}
catch (DeepLException exception)
{
Console.WriteLine($"An error occurred: {exception.Message}");
}
}
}
}
}
For a more complex example, please refer to the sample application, which demonstrates a wide variety of features. For a complete overview of DeepL.NET, please refer to the documentation.
If you want to develop the project further, please install the .NET Core SDK and, if necessary, Git. After that you are ready to clone the repository and build the project:
git clone https://github.com/lecode-official/deepl-dotnet.git
cd deepl-dotnet
dotnet build
If you'd like to contribute, there are multiple ways you can help out. If you find a bug or have a feature request, please feel free to open an issue on GitHub. If you want to contribute code, please fork the repository and use a feature branch. Pull requests are always welcome. Before forking, please open an issue where you describe what you want to do. This helps to align your ideas with mine and may prevent you from doing work, that I am already planning on doing. If you have contributed to the project, please add yourself to the contributors list (CONTRIBUTORS.md). To help speed up the merging of your pull request, please comment and document your code extensively and try to emulate the coding style of the project.
Before a releasing a new version to NuGet, do the following things:
- Update the changelog by adding a list of changes that were made since the last release in
CHANGELOG.md
- Add all contributors to the
CONTRIBUTORS.md
- Update the version number in the following files
README.md
documentation/documentation.md
DeepL.csproj
DeepL.Sample.csproj
- Add the the list of changes to the
<PackageReleaseNotes>
inDeepL.csproj
- Do not forget to build the NuGet package in release configuration:
dotnet pack --configuration Release
The code in this project is licensed under MIT license. For more information see the license file.