Spaces:
Runtime error
Runtime error
Commit
·
d09e72b
1
Parent(s):
d530085
Updated again
Browse files
app.py
CHANGED
|
@@ -8,11 +8,12 @@ from generator import *
|
|
| 8 |
text_ar = st.text_area("Enter text:")
|
| 9 |
|
| 10 |
if(st.button("Generate!")):
|
| 11 |
-
text_ar = text_ar.replace
|
|
|
|
| 12 |
for text in text_ar:
|
| 13 |
lis = creator(text)
|
| 14 |
for item in lis:
|
| 15 |
-
st.
|
| 16 |
|
| 17 |
|
| 18 |
|
|
|
|
| 8 |
text_ar = st.text_area("Enter text:")
|
| 9 |
|
| 10 |
if(st.button("Generate!")):
|
| 11 |
+
text_ar = text_ar.replace.split('\n')
|
| 12 |
+
|
| 13 |
for text in text_ar:
|
| 14 |
lis = creator(text)
|
| 15 |
for item in lis:
|
| 16 |
+
st.text(item)
|
| 17 |
|
| 18 |
|
| 19 |
|