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

# Custom imports
from multipage import MultiPage
from pages import quiz, upload, view, join

# 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("Join", join.app)
app.add_page("Upload", upload.app)
app.add_page("View", view.app)

# The main app
app.run()