Azure AI 翻译文档 Python SDK
Azure AI 文档翻译 Python SDK
Azure AI Translator 文档翻译服务的客户端库,支持在保留格式的情况下进行批量文档翻译。
安装
pip install azure-ai-translation-document环境变量
AZURE_DOCUMENT_TRANSLATION_ENDPOINT=https://<resource>.cognitiveservices.azure.com
AZURE_DOCUMENT_TRANSLATION_KEY=<your-api-key> # 如果使用 API 密钥
源文档和目标文档的存储路径
AZURE_SOURCE_CONTAINER_URL=https://<storage>.blob.core.windows.net/<container>?<sas>
AZURE_TARGET_CONTAINER_URL=https://<storage>.blob.core.windows.net/<container>?<sas>身份验证
API 密钥
import os
from azure.ai.translation.document import DocumentTranslationClient
from azure.core.credentials import AzureKeyCredential
endpoint = os.environ["AZURE_DOCUMENT_TRANSLATION_ENDPOINT"]
key = os.environ["AZURE_DOCUMENT_TRANSLATION_KEY"]
client = DocumentTranslationClient(endpoint, AzureKeyCredential(key))
Entra ID (推荐)
from azure.ai.translation.document import DocumentTranslationClient
from azure.identity import DefaultAzureCredential
client = DocumentTranslationClient(
endpoint=os.environ["AZURE_DOCUMENT_TRANSLATION_ENDPOINT"],
credential=DefaultAzureCredential()
)
基础文档翻译
from azure.ai.translation.document import DocumentTranslationInput, TranslationTarget
source_url = os.environ["AZURE_SOURCE_CONTAINER_URL"]
target_url = os.environ["AZURE_TARGET_CONTAINER_URL"]
开始翻译任务
poller = client.begin_translation(
inputs=[
DocumentTranslationInput(
source_url=source_url,
targets=[
TranslationTarget(
target_url=target_url,
language="es" # 翻译为西班牙语
)
]
)
]
)
等待完成
result = poller.result()
print(f"状态: {poller.status()}")
print(f"翻译成功文档数: {poller.details.documents_succeeded_count}")
print(f"翻译失败文档数: {poller.details.documents_failed_count}")
多个目标语言
poller = client.begin_translation(
inputs=[
DocumentTranslationInput(
source_url=source_url,
targets=[
TranslationTarget(target_url=target_url_es, language="es"),
TranslationTarget(target_url=target_url_fr, language="fr"),
TranslationTarget(target_url=target_url_de, language="de")
]
)
]
)翻译单个文档
from azure.ai.translation.document import SingleDocumentTranslationClient
single_client = SingleDocumentTranslationClient(endpoint, AzureKeyCredential(key))
with open("document.docx", "rb") as f:
document_content = f.read()
result = single_client.translate(
body=document_content,
target_language="es",
content_type="application/vnd.openxmlformats-officedocument.wordprocessingml.document"
)
保存翻译后的文档
with open("document_es.docx", "wb") as f:
f.write(result)检查翻译状态
# 获取所有翻译操作
operafor op in operations:
print(f"Operation ID: {op.id}")
print(f"Status: {op.status}")
print(f"Created: {op.created_on}")
print(f"Total documents: {op.documents_total_count}")
print(f"Succeeded: {op.documents_succeeded_count}")
print(f"Failed: {op.documents_failed_count}")
## 列出文档状态获取任务中单个文档的状态
operation_id = poller.id
document_statuses = client.list_document_statuses(operation_id)
for doc in document_statuses:
print(f"Document: {doc.source_document_url}")
print(f" Status: {doc.status}")
print(f" Translated to: {doc.translated_to}")
if doc.error:
print(f" Error: {doc.error.message}")
## 取消翻译取消正在运行的翻译任务
client.cancel_translation(operation_id)
## 使用术语表from azure.ai.translation.document import TranslationGlossary
poller = client.begin_translation(
inputs=[
DocumentTranslationInput(
source_url=source_url,
targets=[
TranslationTarget(
target_url=target_url,
language="es",
glossaries=[
TranslationGlossary(
glossary_url="https://<storage>.blob.core.windows.net/glossary/terms.csv?<sas>",
file_format="csv"
)
]
)
]
)
]
)
## 支持的文档格式获取支持的格式
formats = client.get_supported_document_formats()
for fmt in formats:
print(f"Format: {fmt.format}")
print(f" Extensions: {fmt.file_extensions}")
print(f" Content types: {fmt.content_types}")
## 支持的语言获取支持的语言
languages = client.get_supported_languages()
for lang in languages:
print(f"Language: {lang.name} ({lang.code})")
## 异步客户端from azure.ai.translation.document.aio import DocumentTranslationClient
from azure.identity.aio import DefaultAzureCredential
async def translate_documents():
async with DocumentTranslationClient(
endpoint=endpoint,
credential=DefaultAzureCredential()
) as client:
poller = await client.begin_translation(inputs=[...])
result = await poller.result()
``
支持的格式
| 类别 | 格式 |
|----------|---------|
| 文档 | DOCX, PDF, PPTX, XLSX, HTML, TXT, RTF |
| 结构化 | CSV, TSV, JSON, XML |
| 本地化 | XLIFF, XLF, MHTML |
存储要求
- 源容器和目标容器必须为 Azure Blob Storage
- 使用具有相应权限的 SAS 令牌:
最佳实践
1. 使用 SAS 令牌,并仅授予所需的最小权限
2. 使用 poller.status()` 监控长时间运行的操作
3. 通过遍历文档状态来处理文档级错误
4. 使用术语表处理特定领域的专业术语
5. 为每种语言设置独立的目标容器
6. 使用异步客户端处理多个并发任务
7. 在提交文档前检查支持的格式
适用场景
此技能适用于执行概览中所描述的工作流或操作。局限性
- 仅在任务与上述描述的范围明确匹配时使用此技能。
- 不要将输出结果视为环境特定验证的替代方案。
- 测试或专家评审。
- 如果缺少必要的输入、权限、安全边界或成功标准,请停止并请求澄清。