File size: 479 Bytes
121a327
5a87f31
099856b
52217c4
e153455
5e1dde9
da7b6d9
7a2c0f7
 
 
 
 
 
 
693fea8
7a2c0f7
 
 
 
 
 
693fea8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import streamlit as st
import sqlite3
import random
import datetime

# Custom imports
from multipage import MultiPage
from pages import quiz, upload
# from pages.utils import add_blanks, chunker, random_session_id, check_answer

# Create an instance of the app 
app = MultiPage()

# Title of the main page
st.markdown("# Quiz Maker")

# Add all your application here
app.add_page("Quiz", quiz.app)
app.add_page("Upload", upload.app)

# The main app
app.run()