Skip to main content

A Django application that supports adding multiple third-party engines for text translation.

Project description

django-text-translator

A Django application that supports adding multiple third-party engines for text translation.

Currently, it supports the following engines:

  • DeepL
  • DeepLX
  • OpenAI
  • ClaudeAI
  • Azure OpenAI
  • Google Gemini
  • Google Translate(Web)
  • Microsoft Translate API
  • Caiyun API
  • Moonshot AI

Installation

  1. Install: pip install django-text-translator
  2. Add "django_text_translator" to your INSTALLED_APPS setting like this:
        INSTALLED_APPS = [
            ...,
            "django_text_translator",
        ]
    
  3. Run python manage.py makemigrations and python manage.py migrate to create the models.
  4. Start the development server and visit the admin to add a translator.
  5. Translate a text:
    from django_text_translator.models import OpenAITranslator
    
    openai_translator = OpenAITranslator.filter(valid=True).first()
    
    results = openai_translator.translate(text="Hello, world!",target_language="Chinese")
    
    print(results.text) # 你好,世界!
    print(results.tokens) # 51
    
    
  6. More details can be found in the models.py file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_text_translator-2024.3.22.1.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_text_translator-2024.3.22.1.tar.gz.

File metadata

File hashes

Hashes for django_text_translator-2024.3.22.1.tar.gz
Algorithm Hash digest
SHA256 8c63b141711bf36c261ecb83e24f76ffbd41221d017f616e00137ef0cfb87d0b
MD5 ee4fb616c16a83c739722ed39c44d7c3
BLAKE2b-256 a12eecf4ec2981f4a71364c2d586fadad09badb53b613baa28466badcdf2c0a0

See more details on using hashes here.

File details

Details for the file django_text_translator-2024.3.22.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_text_translator-2024.3.22.1-py3-none-any.whl
Algorithm Hash digest
SHA256 848139cef8c80ae3023356387f85efb8423d3e5a79ee22dd7fd0d68a0ce4e0da
MD5 3f32b84680e8824dfd072b468dd7ed03
BLAKE2b-256 7a17a7bcb1734f0e2f91c71bcc2fd3a3c33d766fa7c9cb5005e0b703dbe014f9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page