├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md └── workflows │ └── test_release_deploy.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── beetsplug ├── __init__.py └── autofix │ ├── __init__.py │ ├── about.py │ ├── command.py │ ├── common.py │ ├── config_default.yml │ └── task │ ├── __init__.py │ ├── ab_data_fetcher.py │ ├── audio_conversion.py │ ├── genre_finder.py │ ├── missing_file_checker.py │ ├── tag_cleaner.py │ ├── xtractor.py │ └── year_fixer.py ├── setup.cfg ├── setup.py └── test ├── 00_sanity_test.py ├── __init__.py ├── config └── empty.yml └── helper.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/test_release_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/.github/workflows/test_release_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/README.md -------------------------------------------------------------------------------- /beetsplug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/__init__.py -------------------------------------------------------------------------------- /beetsplug/autofix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/__init__.py -------------------------------------------------------------------------------- /beetsplug/autofix/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/about.py -------------------------------------------------------------------------------- /beetsplug/autofix/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/command.py -------------------------------------------------------------------------------- /beetsplug/autofix/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/common.py -------------------------------------------------------------------------------- /beetsplug/autofix/config_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/config_default.yml -------------------------------------------------------------------------------- /beetsplug/autofix/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/__init__.py -------------------------------------------------------------------------------- /beetsplug/autofix/task/ab_data_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/ab_data_fetcher.py -------------------------------------------------------------------------------- /beetsplug/autofix/task/audio_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/audio_conversion.py -------------------------------------------------------------------------------- /beetsplug/autofix/task/genre_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/genre_finder.py -------------------------------------------------------------------------------- /beetsplug/autofix/task/missing_file_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/missing_file_checker.py -------------------------------------------------------------------------------- /beetsplug/autofix/task/tag_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/tag_cleaner.py -------------------------------------------------------------------------------- /beetsplug/autofix/task/xtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/xtractor.py -------------------------------------------------------------------------------- /beetsplug/autofix/task/year_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/beetsplug/autofix/task/year_fixer.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/setup.py -------------------------------------------------------------------------------- /test/00_sanity_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/test/00_sanity_test.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/config/empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/test/config/empty.yml -------------------------------------------------------------------------------- /test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamjakab/BeetsPluginAutofix/HEAD/test/helper.py --------------------------------------------------------------------------------