Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View AidanRocke's full-sized avatar

Aidan Rocke AidanRocke

View GitHub Profile
@AidanRocke
AidanRocke / google_translate_challenge.py
Created June 8, 2018 23:00 — forked from kingjr/google_translate_challenge.py
Find simplest google translate request that generate the maximum number of unique words
from googletrans import Translator
from itertools import product
from pandas import DataFrame, read_csv
import numpy as np
import string
import time
import os
# Get google translator object
translator = Translator()