first commit

This commit is contained in:
Soph :3 2026-01-01 21:34:03 +02:00
commit f2db1af089
9 changed files with 270 additions and 0 deletions

4
matcher.py Normal file
View file

@ -0,0 +1,4 @@
def make_query(track):
artist = track["artists"][0]["name"]
title = track["name"]
return f"{artist} {title}"