gitextract_dh1lrv7v/ ├── .github/ │ └── workflows/ │ ├── deploy-docker.yml │ ├── discord-release-msg.yml │ ├── purge-old-betas.yml │ └── python-publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── deemon/ │ ├── __init__.py │ ├── __main__.py │ ├── assets/ │ │ └── index.html │ ├── cli.py │ ├── cmd/ │ │ ├── __init__.py │ │ ├── artistconfig.py │ │ ├── backup.py │ │ ├── download.py │ │ ├── extra.py │ │ ├── generate.py │ │ ├── monitor.py │ │ ├── profile.py │ │ ├── refresh.py │ │ ├── rollback.py │ │ ├── search.py │ │ ├── show.py │ │ └── upgradelib.py │ ├── core/ │ │ ├── __init__.py │ │ ├── api.py │ │ ├── common.py │ │ ├── config.py │ │ ├── db.py │ │ ├── dmi.py │ │ ├── exceptions.py │ │ ├── logger.py │ │ └── notifier.py │ └── utils/ │ ├── __init__.py │ ├── dataprocessor.py │ ├── dates.py │ ├── performance.py │ ├── startup.py │ ├── ui.py │ └── validate.py ├── docs/ │ ├── _config.yml │ ├── _sass/ │ │ └── custom/ │ │ └── custom.scss │ ├── docs/ │ │ ├── automations/ │ │ │ ├── automations.md │ │ │ ├── cron.md │ │ │ └── task-scheduler.md │ │ ├── commands/ │ │ │ ├── backup.md │ │ │ ├── commands.md │ │ │ ├── config.md │ │ │ ├── download.md │ │ │ ├── library.md │ │ │ ├── monitor.md │ │ │ ├── profile.md │ │ │ ├── refresh.md │ │ │ ├── reset.md │ │ │ ├── rollback.md │ │ │ ├── search.md │ │ │ ├── show.md │ │ │ └── test.md │ │ ├── configuration.md │ │ ├── installation.md │ │ └── troubleshooting/ │ │ ├── logs.md │ │ ├── queue.md │ │ └── troubleshooting.md │ └── index.md ├── requirements.txt └── setup.py