diff options
author | nil <nil@tfwhyno.gf> | 2024-10-02 17:48:56 +0200 |
---|---|---|
committer | nil <nil@tfwhyno.gf> | 2024-10-02 17:48:56 +0200 |
commit | 0972fa6eab8c9111311f082ba8abfdc6b4a40945 (patch) | |
tree | 4eedbdc1a7cfdeee9d651c9871a9f26ab6da56d4 /scripts/populate/api.py | |
parent | 012c2c03b29a987ca4eead023ded22e01aa7477b (diff) |
commit changes
Diffstat (limited to 'scripts/populate/api.py')
-rw-r--r-- | scripts/populate/api.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/scripts/populate/api.py b/scripts/populate/api.py new file mode 100644 index 0000000..5cc24d3 --- /dev/null +++ b/scripts/populate/api.py @@ -0,0 +1,21 @@ +import lyricsgenius +import parser +import os + + +genius = lyricsgenius.Genius( + "0uSA9UFGsiO2WozVmbWPhyhOoVmUNuM3PXRt9rvWhptHBMgSO5CZBxGUMkwet5mv" +) + + +def download_albums(albums): + [get_album_json(artist[0], album) + for artist in albums for album in artist[1]] + + +def get_album_json(artist_name, album_name): + if os.path.isfile(parser.getLink(album_name)): + return + + album = genius.search_album(album_name, artist_name) + album.save_lyrics() |