-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdemo.py
23 lines (18 loc) · 835 Bytes
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# License: BSD
# https://raw.githubusercontent.com/stonier/streamlit_parameters/devel/LICENSE
#
##############################################################################
# Imports
##############################################################################
import streamlit_parameters
##############################################################################
# Entry Points
##############################################################################
# Entry point via `streamlit run ...`. This currently needs to be at the
# root of the repo so that Streamlit Cloud can discover the
# streamlit_parameters import. There might be a way to configure the
# python environment for the streamlit cloud, but I do not know of that way
# yet!
if __name__ == "__main__":
streamlit_parameters.demos.parameters.main()