Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ def load_city_data(city):
|
|
8 |
|
9 |
# Streamlit-App
|
10 |
def main():
|
11 |
-
st.title("
|
12 |
|
13 |
# Sidebar mit Buttons
|
14 |
with st.sidebar:
|
@@ -35,7 +35,7 @@ def main():
|
|
35 |
# Tabelle und Download-Button nebeneinander anordnen
|
36 |
col1, col2 = st.columns([3, 1])
|
37 |
with col1:
|
38 |
-
st.dataframe(data,
|
39 |
with col2:
|
40 |
# Excel-Datei generieren
|
41 |
excel_data = data.to_excel(index=False)
|
|
|
8 |
|
9 |
# Streamlit-App
|
10 |
def main():
|
11 |
+
st.title("Vereine")
|
12 |
|
13 |
# Sidebar mit Buttons
|
14 |
with st.sidebar:
|
|
|
35 |
# Tabelle und Download-Button nebeneinander anordnen
|
36 |
col1, col2 = st.columns([3, 1])
|
37 |
with col1:
|
38 |
+
st.dataframe(data, width=800)
|
39 |
with col2:
|
40 |
# Excel-Datei generieren
|
41 |
excel_data = data.to_excel(index=False)
|