awacke1 commited on
Commit
1a6d898
1 Parent(s): db98fdd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -10
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
- icol1, icol2 = st.columns([1,1])
101
- with icol1:
102
- st.markdown("**" + song_info + "**")
103
- with icol2:
104
- table_md = f"""
105
- | [📚Wiki]({create_search_url_wikipedia(song_info)}) | [🎥YouTube]({create_search_url_youtube(song_info)})
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: