Akses Google Transalte Panda

import pandas as pd
import googletrans
from googletrans import Translator
 
pd.set_option('max_colwidth', 300)
 
 
# how to get the supported language and their corresponing code
lang_df = pd.DataFrame.from_dict(googletrans.LANGUAGES,  orient='index', columns=['Language'])
lang_df
Clumsy Cockroach