Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ def find_midi(title, artist):
|
|
64 |
top_ten_matches = ''
|
65 |
|
66 |
for t in top_ten_matches_idxs:
|
67 |
-
top_ten_matches += all_MIDI_files_names[t][0] + '\n'
|
68 |
|
69 |
print('Done!')
|
70 |
print('=' * 70)
|
@@ -76,7 +76,7 @@ def find_midi(title, artist):
|
|
76 |
print('Done!')
|
77 |
print('=' * 70)
|
78 |
|
79 |
-
song_artist = best_corpus_match[0]
|
80 |
zlib_file_name = best_corpus_match[1]
|
81 |
|
82 |
print('Fetching MIDI score...')
|
|
|
64 |
top_ten_matches = ''
|
65 |
|
66 |
for t in top_ten_matches_idxs:
|
67 |
+
top_ten_matches += str(all_MIDI_files_names[t][0]).title() + '\n'
|
68 |
|
69 |
print('Done!')
|
70 |
print('=' * 70)
|
|
|
76 |
print('Done!')
|
77 |
print('=' * 70)
|
78 |
|
79 |
+
song_artist = str(best_corpus_match[0]).title()
|
80 |
zlib_file_name = best_corpus_match[1]
|
81 |
|
82 |
print('Fetching MIDI score...')
|