Agent skill · DevOps & Cloud

azure-ai-translation-text-py

Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill azure-ai-translation-text-py-moonaxis-azure-stack --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/ai-llm/azure-ai-translation-text-py-moonaxis-azure-stack/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Azure AI Text Translation SDK for Python Client library for Azure AI Translator text translation service for real-time text translation, transliteration, and language operations. ## Installation ```bash pip install azure-ai-translation-text ``` ## Environment Variables ```bash AZURE_TRANSLATOR_KEY=<your-api-key> AZURE_TRANSLATOR_REGION=<your-region> # e.g., eastus, westus2 # Or use custom endpoint AZURE_TRANSLATOR_ENDPOINT=https://<resource>.cognitiveservices.azure.com ``` ## Authentication ### API Key with Region ```python import os from azure.ai.translation.text import TextTranslationClient from azure.core.credentials import AzureKeyCredential key = os.environ["AZURE_TRANSLATOR_KEY"] region = os.environ["AZURE_TRANSLATOR_REGION"] # Create credential with region credential = AzureKeyCredential(key) client = TextTranslationClient(credential=credential, region=region) ``` ### API Key with Custom Endpoint ```python endpoint = os.environ["AZURE_TRANSLATOR_ENDPOINT"] client = TextTranslationClient( credential=AzureKeyCredential(key), endpoint=endpoint ) ``` ### Entra ID (Recommended) ```python from azure.ai.translation.text import TextTranslationClient from azure.identity import Defa

What's inside
Steps it walks through
  1. Installation
  2. Environment Variables
  3. Authentication
  4. API Key with Region
  5. API Key with Custom Endpoint
  6. Entra ID (Recommended)
  7. Basic Translation
  8. Translate to Multiple Languages
  9. Specify Source Language
  10. Language Detection
  11. Transliteration
  12. Dictionary Lookup
  13. Dictionary Examples
  14. Get Supported Languages
Ships with 1 file
  • metadata.json
Commands it runs
pip install azure-ai-translation-text
Or use custom endpoint
More from claude-skill-registry
All skills →
About this skill
What does the azure-ai-translation-text-py skill do?

Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill azure-ai-translation-text-py-moonaxis-azure-stack --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going