python dejavu.py --recognize file_path
python dejavu.py --add file_path
python dejavu.py --recognize file_path
python
from dejavu import Dejavu
from dejavu.recognize import FileRecognizer
config_path = "path/to/config.py"
djv = Dejavu(config_path)
audio_path = "path/to/audio.wav"
song = djv.recognize(FileRecognizer, audio_path)
print(song)