1
0
Fork 0
mirror of https://github.com/Findus23/RadioStats.git synced 2024-09-19 16:03:48 +02:00

only fetch color for songs with spotify data

This commit is contained in:
Lukas Winkler 2020-02-06 22:10:25 +01:00
parent 560558146e
commit 108f7e2403
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -27,7 +27,7 @@ if len(sys.argv) > 1:
else:
limit = 50
query = Song.select().where((Song.show == 0) & (Song.image_large.is_null(False)) & (Song.background_color.is_null()))
query = Song.select().where((Song.show == 0) & (Song.spotify_data == 1) & (Song.background_color.is_null()))
for song in query.limit(limit):
print(song.title)
url = song.image_large