Update app.py
Browse files
app.py
CHANGED
|
@@ -5,7 +5,6 @@ import os
|
|
| 5 |
from dotenv import load_dotenv
|
| 6 |
import plotly.graph_objects as go
|
| 7 |
|
| 8 |
-
|
| 9 |
# Load environment variables
|
| 10 |
load_dotenv()
|
| 11 |
|
|
@@ -32,8 +31,12 @@ with st.form("solar_form"):
|
|
| 32 |
state_options = df['State'].dropna().unique()
|
| 33 |
location = st.selectbox("Select your State", options=sorted(state_options))
|
| 34 |
|
| 35 |
-
|
| 36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
roof_size = st.number_input("Enter your roof size (in sq meters)", min_value=1)
|
| 39 |
electricity_bill = st.number_input("Enter your monthly electricity bill (₹)", min_value=0)
|
|
|
|
| 5 |
from dotenv import load_dotenv
|
| 6 |
import plotly.graph_objects as go
|
| 7 |
|
|
|
|
| 8 |
# Load environment variables
|
| 9 |
load_dotenv()
|
| 10 |
|
|
|
|
| 31 |
state_options = df['State'].dropna().unique()
|
| 32 |
location = st.selectbox("Select your State", options=sorted(state_options))
|
| 33 |
|
| 34 |
+
st.radio(
|
| 35 |
+
"Select Solar Project Type",
|
| 36 |
+
options=["Rooftop Solar"],
|
| 37 |
+
index=0,
|
| 38 |
+
disabled=True
|
| 39 |
+
)
|
| 40 |
|
| 41 |
roof_size = st.number_input("Enter your roof size (in sq meters)", min_value=1)
|
| 42 |
electricity_bill = st.number_input("Enter your monthly electricity bill (₹)", min_value=0)
|