restructure
This commit is contained in:
6
stand.py
6
stand.py
@ -2,10 +2,10 @@ import streamlit as st
|
||||
|
||||
import hacks
|
||||
|
||||
from aggrid import aggrid
|
||||
from download import download
|
||||
from stand.widgets.aggrid import aggrid
|
||||
from stand.widgets.download import download
|
||||
from restapi import restapi
|
||||
from utils.st_utils import get_session_id, hide_UI_elements
|
||||
from stand.utils.st_utils import get_session_id, hide_UI_elements
|
||||
|
||||
|
||||
print(">>> start of streamlit run")
|
||||
|
0
stand/utils/__init__.py
Normal file
0
stand/utils/__init__.py
Normal file
0
stand/widgets/__init__.py
Normal file
0
stand/widgets/__init__.py
Normal file
@ -1,6 +1,6 @@
|
||||
import streamlit as st
|
||||
|
||||
from utils.df2bin import to_excel_binary, to_hdf_binary
|
||||
from ..utils.df2bin import to_excel_binary, to_hdf_binary
|
||||
|
||||
|
||||
state = st.session_state
|
@ -1,7 +1,7 @@
|
||||
import cherrypy as cp
|
||||
|
||||
from utils.dfh import DateFrameHolder
|
||||
from utils.st_utils import rerun
|
||||
from stand.utils.dfh import DateFrameHolder
|
||||
from stand.utils.st_utils import rerun
|
||||
|
||||
|
||||
@cp.expose
|
||||
|
Reference in New Issue
Block a user