Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +11 -8
requirements.txt
CHANGED
@@ -1,11 +1,14 @@
|
|
1 |
-
# requirements.txt
|
2 |
-
|
3 |
# β¨ Core library for creating and running the interactive web application.
|
4 |
-
#
|
5 |
-
#
|
6 |
-
|
|
|
|
|
7 |
|
8 |
# βοΈ Enables two-way communication between Streamlit (Python) and JavaScript in HTML components.
|
9 |
-
#
|
10 |
-
#
|
11 |
-
streamlit-js-eval
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# β¨ Core library for creating and running the interactive web application.
|
2 |
+
# - Handles UI components (e.g., st.button("Save"), st.selectbox("Choose", opts), st.sidebar).
|
3 |
+
# - Manages state (e.g., st.session_state.my_var = 10).
|
4 |
+
# - Embeds HTML/JS (e.g., st.components.v1.html(html_str)).
|
5 |
+
# - Controls app flow (e.g., st.rerun()).
|
6 |
+
streamlit>=1.15.0
|
7 |
|
8 |
# βοΈ Enables two-way communication between Streamlit (Python) and JavaScript in HTML components.
|
9 |
+
# - Python β JS: Sending commands (e.g., streamlit_js_eval(js_code=f"teleportPlayer({x},{z})")).
|
10 |
+
# - JS β Python: Getting data back (e.g., streamlit_js_eval(js_code="getData()", key="data_key")).
|
11 |
+
streamlit-js-eval>=0.0.5
|
12 |
+
|
13 |
+
# π Provides data manipulation tools and CSV file operations for handling plot and world state data.
|
14 |
+
pandas>=1.4.0
|