vivekagr / python-transfluent

Python wrapper for Transfluent API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Transfluent API Client for Python

Build Status

This is a Python wrapper for the Transfluent API.

Installation

$ pip install transfluent

Usage

import transfluent

# Initialize the Transfluent client and retrieve your authentication
# token by using your email and password.
client = transfluent.Transfluent()
client.authenticate(email='example@example.org', password='my-password')

# Alternatively, you may initialize the Transfluent client directly
# with your authentication token.
client = transfluent.Transfluent(token='my-token')

# Order translations for a resource file.
response = client.file_save(
    identifier='my-project/messages',
    language=1,
    file=open('translations/messages.pot'),
    type='po-file'
)
print "The file contains {0} words.".format(response['word_count'])
response = client.file_translate(
    identifier='my-project/messages',
    language=1,
    target_languages=[11],
)
print "{0} words were ordered.".format(response['word_count'])

# Check if the translation for the resource file is complete.
is_translated = client.is_file_complete(
    identifier='my-project/messages',
    language=11
)

if is_translated:
    # Retrieve the translated resource file.
    content = client.file_read(
        identifier='my-project/messages',
        language=11
    )
    with open('translations/en/LC_MESSAGES/messages.po', 'w') as out:
        out.write(content)
else:
    # Check the precise translation progress for the resource file.
    status = client.file_status(
        identifier='my-project/messages',
        language=11
   )
   print "Translation is {0} complete.".format(status['progress'])

Resources

About

Python wrapper for Transfluent API

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%