Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,17 +198,18 @@ def translate_array(self, texts, to_lang, from_lang=None, **options):
State: User state to help correlate request and response. The
same contents will be returned in the response.
"""
options = {
opts = {
'Category': "general",
'Contenttype': "text/plain",
'Uri': '',
'User': 'default',
'State': ''
}.update(options)
}
opts.update(options)
params = {
'texts': json.dumps(texts),
'to': to_lang,
'options': json.dumps(options),
'options': json.dumps(opts),
}
if from_lang is not None:
params['from'] = from_lang
Expand Down