DeepL 0.3.0
This unofficial DeepL implementation has been deprecated in favor of the official DeepL.net package.
See the version list below for details.
dotnet add package DeepL --version 0.3.0
NuGet\Install-Package DeepL -Version 0.3.0
<PackageReference Include="DeepL" Version="0.3.0" />
paket add DeepL --version 0.3.0
#r "nuget: DeepL, 0.3.0"
// Install DeepL as a Cake Addin #addin nuget:?package=DeepL&version=0.3.0 // Install DeepL as a Cake Tool #tool nuget:?package=DeepL&version=0.3.0
DeepL.NET
IMPORTANT This is not an official .NET binding for DeepL and is neither created nor officially supported by DeepL.
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.
Features
- .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)
Getting Started
To get started you have to add the package reference to your project:
Install-Package DeepL -Version 0.3.0 # Package Manager
dotnet add package DeepL --version 0.3.0 # .NET CLI
paket add DeepL --version 0.3.0 # Paket CLI
or manually add a reference to your project file:
<PackageReference Include="DeepL" Version="0.3.0" />
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>", useFreeApi: false))
{
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 is a fully-featured command line tool that demonstrates the usage of all DeepL.NET features. For a complete overview of DeepL.NET, please refer to the documentation.
Developing
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
Contributing
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). Also, if necessary, update the documentation and the DeepL CLI. 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.
Releasing the NuGet Package
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
and add the people that have contributed to the current release to the changelog - 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
(no Markdown allowed, do not indent) - Do not forget to build the NuGet package in release configuration:
dotnet pack --configuration Release
- Upload both the
.nupkg
and the.snupkg
to NuGet
License
The code in this project is licensed under MIT license. For more information see the license file.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.AspNetCore.StaticFiles (>= 2.2.0)
- Newtonsoft.Json (>= 12.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- It is now possible to choose between the free and the pro version of the DeepL API
- Cleaned up the documentation and integrated the new constructor argument of the DeepLClient
- Renamed the sample project to CLI, because it is more than just a sample
- Integrated the option for the free API into the CLI as well
- Integrated the new languages that were introduced in 0.2.0 into the CLI
This release was made possible by the following contributors:
- Michal Cadecky (https://github.com/MichalCadecky)
- Raoul Jacobs (https://github.com/RaoulJacobs)