mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
10 lines
253 B
Python
10 lines
253 B
Python
import arrr
|
|
from js import document
|
|
|
|
|
|
def translate_english(event):
|
|
input_text = document.querySelector("#english")
|
|
english = input_text.value
|
|
output_div = document.querySelector("#output")
|
|
output_div.innerText = arrr.translate(english)
|