awacke1 commited on
Commit
a8b86a3
Β·
verified Β·
1 Parent(s): 89b923d

Update requirements.txt

Browse files
Files changed (1) hide show
  1. 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
- # ✨ Handles UI 🎨 (e.g., st.button("Save"); st.selectbox("Choose", opts); st.sidebar); State πŸ’Ύ (st.session_state.my_var = 10);
5
- # ✨ Embedding HTML/JS πŸ–ΌοΈ (st.components.v1.html(html_str)); App control πŸ”„ (st.rerun()).
6
- streamlit
 
 
7
 
8
  # ↔️ Enables two-way communication between Streamlit (Python) and JavaScript in HTML components.
9
- # 🐍->πŸ’» Sending commands (e.g., streamlit_js_eval(js_code=f"teleportPlayer({x},{z})"));
10
- # πŸ’»->🐍 Getting data back (e.g., streamlit_js_eval(js_code="getData()", key="data_key")).
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