In [13]:
from metal_lyric_data import *
In [14]:
df_artist = get_artist_genre_table(500)
In [15]:
df_artist.info()
In [26]:
df_artist.tail()
Out[26]:
In [17]:
df_songs = get_song_table(500)
In [24]:
df_songs.info()
In [25]:
df_songs.iloc[206:211, :]
Out[25]:
In [21]:
df_songs.iloc[206:211, :].lyric_id.apply(get_lyrics)
Out[21]:
In [ ]: