Indonesisch-Englisch Übersetzung mit der GroupDocs.Translation Cloud API in Python
GroupDocs.Translation Cloud API ist eine umfassende Plattform, die Entwicklern die Möglichkeit bietet, maschinelle Übersetzungen in über 50 Sprachen, einschließlich Englisch und Indonesisch, durchzuführen. Die API ist benutzerfreundlich und bietet Funktionen zur einfachen Integration in bestehende Anwendungen. Entwickler können mithilfe von Python problemlos auf die API zugreifen und Übersetzungen von Indonesisch nach Englisch durchführen, indem sie einfach die entsprechenden Endpunkte aufrufen und die gewünschten Texte übergeben. Die API bietet genaue und zuverlässige Übersetzungen in Echtzeit und ist eine leistungsstarke Lösung für Entwickler, die Übersetzungen in ihren Anwendungen implementieren möchten.
// Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
public TextResponse TranslateText(Configuration conf)
{
string pair = "id-en";
string text = "Indonesisch-Englisch Übersetzung mit der GroupDocs.Translation Cloud API in Python";
TranslationApi api = new TranslationApi(conf);
TranslateTextRequest request = api.CreateTextRequest(pair, text);
TextResponse response = api.RunTranslationTextTask(request);
return response;
}
# Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
curl -X POST "https://api.groupdocs.cloud/v1.0/translation/text" \
-H "Authorization: Bearer TOKEN" \
-H "Content-Type: application/json" \
-d '[{"pair":"id-en", "text":"Indonesisch-Englisch Übersetzung mit der GroupDocs.Translation Cloud API in Python"}]'
# and response
{ "status":"ok", "message":"Text translated successfully", "translation":"....." }
// Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
import com.GroupDocs.translate.api.*;
import com.GroupDocs.translate.Configuration;
private static void setUpConfig() throws Exception {
Configuration.setAPP_SID("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
Configuration.setAPI_KEY("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
}
static String TranslateText() {
pair = "id-en";
text = "Indonesisch-Englisch Übersetzung mit der GroupDocs.Translation Cloud API in Python";
TextInfo textInfo = new TextInfo(pair, text);
TranslationTextRequest translationTextRequest = new TranslationTextRequest(TextInfo.toString());
TranslationTextResponse translateTextResponse = TranslationApi.TranslateText(translationTextRequest);
return translateTextResponse.translation;
}
# Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
from groupdocstranslationcloud.configuration import Configuration
from groupdocstranslationcloud.api.translation_api import TranslationApi
from groupdocstranslationcloud.models.translate_text import TranslateText
from groupdocstranslationcloud.models.translate_document import TranslateDocument
# enter valid apiKey and appSid
configuration = Configuration(apiKey="", appSid="")
api = TranslationApi(configuration)
pair = "id-en"
text = "Indonesisch-Englisch Übersetzung mit der GroupDocs.Translation Cloud API in Python"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Unterstützung für die Übersetzung von Texten
Die GroupDocs.Translation Cloud unterstützt die Übersetzung von Texten von Indonesisch nach Englisch. Sie können mithilfe der Cloud-API Texte in verschiedenen Formaten wie DOCX, PDF, PPTX und mehr übersetzen.
Einfache Integration über die Cloud-API
Die Cloud-API von GroupDocs.Translation ermöglicht eine nahtlose Integration in Ihre Python-Anwendung. Sie können die API leicht in Ihre Anwendung einbinden und die Übersetzungsfunktionen nutzen, ohne umfangreiche Installations- und Konfigurationsprozesse durchführen zu müssen.
Automatische Spracherkennung
Die Cloud bietet automatische Erkennung der Ausgangssprache, so dass Sie nicht extra angeben müssen, dass der zu übersetzende Text auf Indonesisch verfasst ist. Dies erleichtert den Übersetzungsprozess und spart Zeit.
Qualitativ hochwertige Übersetzungen
GroupDocs.Translation Cloud verwendet fortschrittliche Übersetzungstechnologien, um qualitativ hochwertige Übersetzungen zu liefern. Die Ergebnisse sind präzise und verständlich, was es Ihnen ermöglicht, eine klare Kommunikation in verschiedenen Sprachen sicherzustellen.
Frequently Asked Questions
Wie kann ich GroupDocs.Translation Cloud API in meinem Python-Projekt verwenden?
Sie können die GroupDocs.Translation Cloud API in Ihrem Python-Projekt verwenden, indem Sie das Python-SDK herunterladen und installieren und dann die API-Methoden entsprechend aufrufen.
Kann GroupDocs.Translation Cloud das Indonesische in englischen Text übersetzen?
Ja, GroupDocs.Translation Cloud unterstützt die Übersetzung von Indonesisch in Englisch.
Gibt es Begrenzungen für die Anzahl der API-Aufrufe bei GroupDocs.Translation Cloud?
Ja, GroupDocs.Translation Cloud hat Limits für die Anzahl der API-Aufrufe. Sie sollten die Einschränkungen beachten, um unnötige Einschränkungen zu vermeiden.