テキストとドキュメントの翻訳のための Python Cloud SDK

GroupDocs.Translation API に基づいて、クロスプラットフォームのデータ サイエンス、AI、自動化ソリューションを Python で作成します。技術的な詳細ではなく、ビジネス ロジックに焦点を当てます。

  • GroupDocs.Translation Cloud SDK for cURL
  • GroupDocs.Translation Cloud SDK for .NET
  • GroupDocs.Translation Cloud SDK for Java
  • GroupDocs.Translation Cloud SDK for Android
無料トライアルを開始

GroupDocs.Translation offers real-time machine translation for texts, documents, images and resources. Powerful machine learning algorithms and sophisticated neural networks provide a quality close to that of a professional human translator, but much faster and more cost-effective. Running on a high-performance cloud server hosted by GroupDocs, it can translate PDF, Microsoft Office and OpenOffice documents, Markdown files, and .NET resources into 46 European, Middle East and Asian languages (across 128 language pairs). The API not only translates text, but also accurately preserves metadata, structure, styles, and layout of documents.

This SDK greatly simplifies the interaction with GroupDocs.Translation Cloud services from Python code, allowing you to focus on business logic rather than the technical details. It handles all the routine operations such as establishing connections, sending API requests, and parsing responses, wrapping all these tasks into a few simple methods that can be used in any Python application or workbook. The Python SDK, demo applications, documentation, and examples are open source distributed under the MIT license. You can use them for any purpose and change any part of the code.

GroupDocs.Translation Cloud SDK for Python の高度な機能

Supports 46 languages and 128 language pairs

Translates to and from 46 European, Middle East and Asian languages

Word 文書および PowerPoint プレゼンテーションの表を翻訳します

ドキュメントのヘッダーとフッターを翻訳します

Word 文書の脚注と文末脚注を翻訳します

Word 文書の画像キャプションを翻訳します

PowerPoint プレゼンテーションのテキスト フレーム、チャート、スライドを翻訳します

スプレッドシートのセル内のテキストを翻訳します

Excel ワークブックのグラフとピボット テーブルを翻訳します

すべての一般的な Markdown フォーマットを保持して Markdown ファイルを変換します

URL とパブリック リポジトリからファイルを変換します

追加のソフトウェアなしで結果をさまざまな形式に変換

Swagger コレクションに基づく詳細な開発者リファレンス

ドキュメント翻訳 SDK for Python のクイック スタート

GroupDocs.Translation Cloud SDK for Python には、詳細な開発者ガイドとライブ コード例が付属しており、すぐに API 機能を使い始めることができます。 GroupDocs Cloud で無料のアカウントを作成し、GroupDocs Cloud API と通信するためのアプリ SID とキー情報を取得するだけで、API を作成して SDK を使用する準備が整います。

あらゆる言語、プラットフォーム、ストレージ サービス プロバイダー

GroupDocs.Translation Cloud は、任意の言語またはプラットフォームと簡単に統合できる REST API であり、HTTP 要求と応答を管理できます。 Google Cloud、Drive、DropBox、Amazon S3 などの一般的なクラウド ストレージ サービスをすべてサポートし、依存関係なしでやり取りできます。

Python でプレーン テキストを翻訳する

  //Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).

  import time
  import groupdocs_translation_cloud
  from groupdocs_translation_cloud import TextRequest, PdfFileRequest, Format
  api = groupdocs_translation_cloud.api.TranslationApi()
  file_api = groupdocs_translation_cloud.api.FileApi()
  api.api_client.configuration.client_id = "YOU_CLIENT_ID"
  api.api_client.configuration.client_secret = "YOU_CLIENT_SECRET"
  text_request = TextRequest(source_language="en", 
  						   target_languages=["es", "fr", "ru"], 
  						   texts=["Hello World!", "This is a test text"], 
  						   origin="your_application_name", 
  						   contains_markdown=False)
  response = api.text_post(text_request)
  if response.status == 202:
      while True:
          status_response = api.text_request_id_get(response.id)
          if status_response.status == 200:
          	for lang in status_response.translations:
          		print(lang + ": " + status_response.translations[lang][0])
          		break
          time.sleep(2)

セキュリティと認証

GroupDocs.Translation Cloud APIはSSLで保護されており、認証リクエストには署名とAppSIDクエリパラメーターまたはOAuth2.0認証ヘッダーが必要です。

サポートと学習リソース

GroupDocs.Translation Cloud は、一般的なプログラミング言語およびプラットフォーム用の SDK を提供します。

  日本語