awacke1 commited on
Commit
e32b405
Β·
verified Β·
1 Parent(s): 31c16b9

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +11 -2
requirements.txt CHANGED
@@ -1,2 +1,11 @@
1
- streamlit_js_eval
2
- sqlite3
 
 
 
 
 
 
 
 
 
 
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