awacke1 commited on
Commit
13f5fd7
1 Parent(s): 297b564

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -73,7 +73,8 @@ def display_chord_sheet_in_two_page_view(chord_sheet):
73
  def main():
74
  col1, col3 = st.columns([3, 5])
75
  with col1:
76
- st.markdown('### 🎵🎥 ChordPrompter 🎸 AI Prompt Authoring - Wiki, YouTube, Chords, Lyrics📚🎶')
 
77
  with st.expander("Select Song:", expanded=True):
78
  all_files = [f for f in glob.glob("*.txt") if ' by ' in f]
79
  selected_file = st.selectbox("Choose: ", all_files, key='selected_file')
@@ -97,7 +98,7 @@ def main():
97
  st.markdown("**" + song_info + "**")
98
  with icol2:
99
  table_md = f"""
100
- | [📚Wikipedia]({create_search_url_wikipedia(song_info)}) | [🎥YouTube]({create_search_url_youtube(song_info)})
101
  | [🎸Chords]({create_search_url_chords(song_info)}) | [🎶Lyrics]({create_search_url_lyrics(song_info)}) |
102
  """
103
  st.markdown(table_md)
 
73
  def main():
74
  col1, col3 = st.columns([3, 5])
75
  with col1:
76
+ st.markdown('''### 🎵🎥 ChordPrompter 🎸 AI Prompt Authoring
77
+ #### 📚🎶 Wiki, YouTube, Chords, Lyrics''')
78
  with st.expander("Select Song:", expanded=True):
79
  all_files = [f for f in glob.glob("*.txt") if ' by ' in f]
80
  selected_file = st.selectbox("Choose: ", all_files, key='selected_file')
 
98
  st.markdown("**" + song_info + "**")
99
  with icol2:
100
  table_md = f"""
101
+ | [📚Wiki]({create_search_url_wikipedia(song_info)}) | [🎥YouTube]({create_search_url_youtube(song_info)})
102
  | [🎸Chords]({create_search_url_chords(song_info)}) | [🎶Lyrics]({create_search_url_lyrics(song_info)}) |
103
  """
104
  st.markdown(table_md)