Google翻訳APIをpythonスクリプトで叩いて英語を日本語に翻訳する。

Google翻訳APIpythonスクリプトで叩いて英語を日本語に翻訳する。

script

import requests
import os

data = {
  'q': 'The Grate Great Pyramid of Giza (also known as the Pyramid of
Khufu or the Pyramid of Cheops) is the oldest and largest of the three
pyramids in the Giza pyramid complex.',
  'source': 'en',
  'target': 'ja',
  'format': 'text'
}

url = 'https://translation.googleapis.com/language/translate/v2'
token = os.environ['TOKEN']

headers = {
 'Authorization': 'Bearer {}'.format(token),
 'Content-Type': 'application/json',
}

res = requests.post(url, headers=headers, json=data)

print(res.json())

実行例

TOKEN=xxxxxxxxxxxxx python example.py

結果

{'data': {'translations': [{'translatedText':
'ギザのグレート大ピラミッド(クフのピラミッドまたはチープのピラミッドとしても知られています)は、ギザピラミッド複合体の3つのピラミッドの中で最も古く、最も大きいピラミッドです。'}]}}

Ref

Google Cloud の認証トークンを gcloud コマンドで取得する。環境変数でサービスアカウントファイルを指定する例。 · Issue #545 · YumaInaura/YumaInaura

https://github.com/YumaInaura/YumaInaura/issues/547