python google 翻訳seleniumを使って英訳を得る(備忘録)
Google翻訳するには、様々な方法があります。
このリンクを参考にしてど自動翻訳してみました。
from bs4 import BeautifulSoup
from selenium import webdriver
import urllib.parse
driver = webdriver.Chrome(r"C:\Users\xxxxxxxx\xxxxx\study\chromedriver.exe")
text = "本日は晴れ。"
url_text = "https://translate.google.co.jp/#ja/en/{0}".format(text)
url = urllib.parse.quote_plus(url_text, "/:?=&#")
driver.get(url)
html = driver.page_source
result = BeautifulSoup(html, "html.parser").find(class_="tlid-translation translation").text
print(result)
driver.close()
driver.quit()
It is sunny today.と訳されました。It's fine today.が正しいと思いますが、一応通じます。
Author And Source
この問題について(python google 翻訳seleniumを使って英訳を得る(備忘録)), 我々は、より多くの情報をここで見つけました https://qiita.com/hit701/items/ab4a483d5d250d386c51著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .