Skip to content

Instantly share code, notes, and snippets.

@iKlotho
Created June 5, 2015 14:40
Show Gist options
  • Save iKlotho/18ab27f2366b138adb91 to your computer and use it in GitHub Desktop.
Save iKlotho/18ab27f2366b138adb91 to your computer and use it in GitHub Desktop.
Python Console Translate
#-*- coding: utf-8 -*-
import requests
while True:
entry = raw_input("[+] Cevirelecek Kelime -> ")
url = 'http://translate.google.com/translate_a/t?client=t&text='+entry+'&hl=en&sl=en&tl=tr'
r = requests.post(url)
resp = r.content
print '[-]' + resp.split('],')[1].replace("[","").replace("]","")
print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment