AlphaHacker1729 commited on
Commit
7c374c3
·
verified ·
1 Parent(s): 032e67c

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +6 -0
src/streamlit_app.py CHANGED
@@ -258,3 +258,9 @@ with col2:
258
 
259
  st.write("**Fertilizer:**", recommend_fertilizer(selected_crop))
260
  st.write("**Pest Risk:**", pest_risk_advice(selected_crop, temp, hum))
 
 
 
 
 
 
 
258
 
259
  st.write("**Fertilizer:**", recommend_fertilizer(selected_crop))
260
  st.write("**Pest Risk:**", pest_risk_advice(selected_crop, temp, hum))
261
+
262
+ import streamlit as st
263
+
264
+ if __name__ == "__main__":
265
+ st.run()
266
+