Skip to content

Commit e25397e

Browse files
committed
example: 🎨
1 parent 6e71c8c commit e25397e

File tree

1 file changed

+12
-0
lines changed
  • 1 Python/docs/class_code_examples/mini_capstone_ex

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import pylyrics3
2+
# https://github.com/jameswenzel/pylyrics3
3+
4+
5+
bon_iver_lyrics = pylyrics3.get_artist_lyrics('bon iver')
6+
7+
print(bon_iver_lyrics)
8+
9+
10+
while True:
11+
artist = input('What artist do you want to look up?')
12+
print(pylyrics3.get_artist_lyrics(artist))

0 commit comments

Comments
 (0)