restructure

This commit is contained in:
2022-05-27 21:03:08 +02:00
parent 0ee6707d9b
commit 820ee221a7
10 changed files with 6 additions and 6 deletions

View File

@ -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
View File

View File

View 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

View File

@ -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