music-kraken-core/src/goof.py

19 lines
295 B
Python
Raw Normal View History

2022-11-30 15:15:38 +00:00
import music_kraken
2022-11-24 13:13:55 +00:00
2022-12-01 12:15:30 +00:00
music_kraken.clear_cache()
2022-11-30 15:15:38 +00:00
artist = music_kraken.Artist(
name="I'm in a Coffin"
)
song = music_kraken.Song(
title="Vein Deep in the Solution",
release="One Final Action",
artists=[artist]
)
2022-11-29 13:16:36 +00:00
print(song)
2022-12-01 12:15:30 +00:00
print(song.id)
2022-12-01 12:15:30 +00:00
# music_kraken.fetch_sources([song])