df_align / app.py
Fer-geo's picture
first commit
39ce4ed
raw
history blame
262 Bytes
import streamlit as st
import warnings
warnings.filterwarnings('ignore')
import pandas as pd
import geopandas as gpd
from difflib import get_close_matches
import tempfile
from io import BytesIO
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)