CASLL commited on
Commit
1b9fb34
1 Parent(s): 43e9cf3

gui for translator

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ title = st.title("Tradutor FR to EN")
4
+
5
+ txt = st.text_area(
6
+ "Setença para traduzir:",
7
+
8
+ )
9
+
10
+ if st.button("Traduzir"):
11
+ fr_txt = txt
12
+ title = st.text_input("Tradução", fr_txt)
13
+