awacke1 commited on
Commit
0962db3
1 Parent(s): be19b0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -88,15 +88,18 @@ def main():
88
  st.markdown(f"[🎸Chords]({create_search_url_chords(song_info)})")
89
  st.markdown(f"[🎶Lyrics]({create_search_url_lyrics(song_info)})")
90
 
91
- with col2:
92
  if selected_file:
93
  load_song_file(selected_file)
94
  song_info = os.path.splitext(selected_file)[0].replace("_", " ")
 
 
 
95
  st.markdown(f"**Selected Song:** {song_info}")
96
  st.markdown(f"[📚Wikipedia]({create_search_url_wikipedia(song_info)})")
97
  st.markdown(f"[🎥YouTube]({create_search_url_youtube(song_info)})")
98
  st.markdown(f"[🎸Chords]({create_search_url_chords(song_info)})")
99
  st.markdown(f"[🎶Lyrics]({create_search_url_lyrics(song_info)})")
100
 
 
101
  if __name__ == '__main__':
102
  main()
 
88
  st.markdown(f"[🎸Chords]({create_search_url_chords(song_info)})")
89
  st.markdown(f"[🎶Lyrics]({create_search_url_lyrics(song_info)})")
90
 
 
91
  if selected_file:
92
  load_song_file(selected_file)
93
  song_info = os.path.splitext(selected_file)[0].replace("_", " ")
94
+
95
+ with col2:
96
+ if selected_file:
97
  st.markdown(f"**Selected Song:** {song_info}")
98
  st.markdown(f"[📚Wikipedia]({create_search_url_wikipedia(song_info)})")
99
  st.markdown(f"[🎥YouTube]({create_search_url_youtube(song_info)})")
100
  st.markdown(f"[🎸Chords]({create_search_url_chords(song_info)})")
101
  st.markdown(f"[🎶Lyrics]({create_search_url_lyrics(song_info)})")
102
 
103
+
104
  if __name__ == '__main__':
105
  main()