Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -33,6 +33,7 @@ def main():
|
|
| 33 |
|
| 34 |
st.title("Search")
|
| 35 |
df_properties = pd.read_csv("atlanta_data_new.csv", encoding='utf-8')
|
|
|
|
| 36 |
# df_options = df_Atlanta.google_ola.values[:]
|
| 37 |
df_options = st.session_state.get("df_options", [st.session_state['user_select_value']] + df_properties.google_ola.tolist())
|
| 38 |
|
|
|
|
| 33 |
|
| 34 |
st.title("Search")
|
| 35 |
df_properties = pd.read_csv("atlanta_data_new.csv", encoding='utf-8')
|
| 36 |
+
df_properties = df_properties[df_properties['months_since'] <= 12]
|
| 37 |
# df_options = df_Atlanta.google_ola.values[:]
|
| 38 |
df_options = st.session_state.get("df_options", [st.session_state['user_select_value']] + df_properties.google_ola.tolist())
|
| 39 |
|