-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
30 lines (21 loc) · 724 Bytes
/
app.py
File metadata and controls
30 lines (21 loc) · 724 Bytes
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
30
import os
import streamlit as st
import numpy as np
from PIL import Image
# Custom imports
from multipage import MultiPage
from pages import email, feedback, open_orders, ltsi, helper_file # import your pages here
# Create an instance of the app
app = MultiPage()
# Title of the main page
display = Image.open('logo.png')
st.image(display, width = 650)
# st.title("Data Storyteller Application")
# Add all your application here
app.add_page("Generate Open Order File", open_orders.app)
app.add_page("Valid LTSI list generator", ltsi.app)
app.add_page("Build Helper File", helper_file.app)
app.add_page("Consolidate Feedback", feedback.app)
app.add_page("Feedback/Issue Form", email.app)
# The main app
app.run()