4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

csvファイルに入っている日本語のリストをgoogle翻訳で英訳する

Posted at

#CSVファイルに入っている日本語リストを翻訳し、別のCSVファイルに対応させて、出力する。
まずターミナルで
pip install googletrans
と打ってpythonパッケージをインストールしてください。

ja_to_english.py
import pandas as pd
from googletrans import Translator
translator = Translator()
data=pd.read_csv('trans.csv')
english_list=[]
for i in data['japanese']:
    dst = translator.translate(i, src='ja', dest='en')
    english_list.append(dst.text)
    
data['english']=english_list
data.to_csv("result.csv",encoding='utf_8_sig' ,index=False)

以上のようなファイルを作り、ターミナルにて
python ja_to_english.py
で実行してください。

trans.csvの例

japanese english
黄色
日本語
英語
アボカド

出力されるresult.csvの例

japanese english
red
黄色 yellow
black
日本語 japanese
英語 english
アボカド avocado

#参考
pythonで日本語を英語に翻訳したい

4
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?