williambr commited on
Commit
0de23fa
·
1 Parent(s): 683264b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -2
app.py CHANGED
@@ -2,7 +2,22 @@ import streamlit as st
2
  import pandas as pd
3
  import numpy as np
4
 
5
- name = st.text_input('What is your name?')
6
- st.markdown(name)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
 
 
2
  import pandas as pd
3
  import numpy as np
4
 
5
+ st.title('Plot and track your vacations')
6
+ city_name = st.text_input('Please Input your Desired City:')
7
+ lat = st.text_input('Please Input the Latitude': )
8
+ long = st.text_input('Please Input the Longitude': )
9
+
10
+
11
+ cities_list = []
12
+ lat_list = []
13
+ long_list = []
14
+
15
+
16
+ places = pd.DataFrame({'City:' cities_list, 'Latitude:' lat_list, 'Longitude:' long_list)})
17
+
18
+ st.map(places)
19
+
20
+
21
+
22
 
23