Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -97,16 +97,12 @@ def main():
|
|
97 |
st.header("🎼 Available Songs")
|
98 |
for file in all_files:
|
99 |
song_info = os.path.splitext(file)[0].replace("_", " ")
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
| [🎸Chords]({create_search_url_chords(song_info)}) | [🎶Lyrics]({create_search_url_lyrics(song_info)}) |
|
107 |
-
"""
|
108 |
-
st.markdown(table_md)
|
109 |
-
|
110 |
|
111 |
with col3:
|
112 |
if 'selected_file' in st.session_state and st.session_state.selected_file:
|
|
|
97 |
st.header("🎼 Available Songs")
|
98 |
for file in all_files:
|
99 |
song_info = os.path.splitext(file)[0].replace("_", " ")
|
100 |
+
#icol1, icol2 = st.columns([1,1])
|
101 |
+
#with icol1:
|
102 |
+
st.markdown("**" + song_info + "**")
|
103 |
+
#with icol2:
|
104 |
+
table_md = f"""| [📚Wiki]({create_search_url_wikipedia(song_info)}) | [🎥YouTube]({create_search_url_youtube(song_info)}) | [🎸Chords]({create_search_url_chords(song_info)}) | [🎶Lyrics]({create_search_url_lyrics(song_info)}) | """
|
105 |
+
st.markdown(table_md)
|
|
|
|
|
|
|
|
|
106 |
|
107 |
with col3:
|
108 |
if 'selected_file' in st.session_state and st.session_state.selected_file:
|