first commit
Browse files- app.py +14 -0
- requirements.txt +1 -0
app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import warnings
|
3 |
+
warnings.filterwarnings('ignore')
|
4 |
+
import pandas as pd
|
5 |
+
import geopandas as gpd
|
6 |
+
from difflib import get_close_matches
|
7 |
+
import tempfile
|
8 |
+
|
9 |
+
|
10 |
+
from io import BytesIO
|
11 |
+
|
12 |
+
|
13 |
+
x = st.slider('Select a value')
|
14 |
+
st.write(x, 'squared is', x * x)
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
geopandas
|