gitextract_enpu696l/ ├── .gitignore ├── INSTALLATION.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── dejavu/ │ ├── __init__.py │ ├── base_classes/ │ │ ├── __init__.py │ │ ├── base_database.py │ │ ├── base_recognizer.py │ │ └── common_database.py │ ├── config/ │ │ ├── __init__.py │ │ └── settings.py │ ├── database_handler/ │ │ ├── __init__.py │ │ ├── mysql_database.py │ │ └── postgres_database.py │ ├── logic/ │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── fingerprint.py │ │ └── recognizer/ │ │ ├── __init__.py │ │ ├── file_recognizer.py │ │ └── microphone_recognizer.py │ ├── tests/ │ │ ├── __init__.py │ │ └── dejavu_test.py │ └── third_party/ │ ├── __init__.py │ └── wavio.py ├── dejavu.cnf.SAMPLE ├── dejavu.py ├── docker/ │ ├── .gitkeep │ ├── postgres/ │ │ ├── Dockerfile │ │ └── init.sql │ └── python/ │ └── Dockerfile ├── docker-compose.yaml ├── example_docker_postgres.py ├── example_script.py ├── requirements.txt ├── run_tests.py ├── setup.cfg ├── setup.py └── test_dejavu.sh