File size: 491 Bytes
c1b9d7d
 
 
 
 
 
b17b9af
04522f3
5045bb5
35b864c
aa69e68
35b864c
24c253b
35b864c
 
aa69e68
c712c56
aa69e68
 
 
 
041a2c6
 
d530085
 
c1b9d7d
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import streamlit as st
import generator
from generator import *





i = 0

st.text("To increase the number of questions, please seperate two paragraphs wth one line in between.\n")
text_ar = st.text_area("Enter text:")
col1, col2, col3 = st.columns([2,1,2])

if(col2.button("Generate!")):
    text_ar = text_ar.split("\n\n")
    for text in text_ar:
        text.replace("\n"," ")
        pairs = creator(text)
        for pair in pairs:
            st.text(pair)
    st.balloons()