Skip to content

Commit

Permalink
Merge pull request #7 from jeanmarie123/creation_app
Browse files Browse the repository at this point in the history
ajout_de_imo_apps_en_ligne
  • Loading branch information
jeanmarie237 authored Apr 10, 2024
2 parents 8d59ff2 + e5e460e commit 3f9035d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions imo_apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import streamlit as st
import pandas as pd
import plotly.express as px
import os
import warnings
from analytics.analyse import read_data
warnings.filterwarnings('ignore')

# Titre de la page via le web
st.set_page_config(page_title = "Dashboad imo France", page_icon = ":bar_chart:", layout = "wide")

st.subheader(" :bar_chart: Tendance de l'immobilier en France ")

z_g = 'zone_geographique'
t_l = 'type_logement'
c_a = 'caracteristique'

df = read_data(z_g)

tab1, tab2 = st.tabs(["Cat", "Dog"])

with tab1:
input_text = st.text_area(label = "entrez votre input")
st.write(input_text)
st.dataframe(df)


with tab2:
input_v = st.text_area(label = "entrez votre code")
st.write(input_v)
st.dataframe(df)




0 comments on commit 3f9035d

Please sign in to comment.