Update app.py
Browse files
app.py
CHANGED
@@ -46,11 +46,11 @@ col1, col2, col3 = st.columns([1,1,1])
|
|
46 |
placeholder = st.empty()
|
47 |
|
48 |
with col1:
|
49 |
-
st.button('Remove
|
50 |
with col2:
|
51 |
-
st.button('
|
52 |
with col3:
|
53 |
-
st.button('Remove
|
54 |
|
55 |
with placeholder:
|
56 |
text = st.text_area(f"",max_chars=1000,height=140,key="textbox")
|
|
|
46 |
placeholder = st.empty()
|
47 |
|
48 |
with col1:
|
49 |
+
st.button('Remove Punctation', on_click=uncase)
|
50 |
with col2:
|
51 |
+
st.button('Remove Casing', on_click=unpunct)
|
52 |
with col3:
|
53 |
+
st.button('Remove Spaces', on_click=unspace)
|
54 |
|
55 |
with placeholder:
|
56 |
text = st.text_area(f"",max_chars=1000,height=140,key="textbox")
|