Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- 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 |
+
|