├── .cookiecutter.yml ├── .editorconfig ├── .github └── workflows │ ├── codeql-analysis.yml │ └── main.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _config.yml ├── _static │ ├── .keep │ └── rtd.css ├── _templates │ └── .keepme ├── authors.rst ├── cli.rst ├── compliance.rst ├── conf.py ├── contributing.rst ├── eyeD3.1 ├── eyed3.id3.rst ├── eyed3.mp3.rst ├── eyed3.plugins.rst ├── eyed3.rst ├── eyed3.utils.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst ├── plugins.rst ├── plugins │ ├── art_plugin.rst │ ├── classic_plugin.rst │ ├── extract_plugin.rst │ ├── fixup_plugin.rst │ ├── genres_plugin.rst │ ├── itunes_plugin.rst │ ├── json_plugin.rst │ ├── lameinfo_plugin.rst │ ├── mimetypes_plugin.rst │ ├── nfo_plugin.rst │ ├── pymod_plugin.rst │ ├── stats_plugin.rst │ ├── xep118_plugin.rst │ └── yaml_plugin.rst ├── readme.rst └── usage.rst ├── etc ├── eyeD3.bash └── mycog.py ├── examples ├── chapters.py ├── cli_examples.sh ├── config.ini ├── plugins │ ├── echo.py │ └── echo2.py └── tag_example.py ├── eyed3 ├── __about__.py ├── __init__.py ├── __regarding__.py ├── core.py ├── id3 │ ├── __init__.py │ ├── apple.py │ ├── frames.py │ ├── headers.py │ └── tag.py ├── main.py ├── mimetype.py ├── mp3 │ ├── __init__.py │ └── headers.py ├── plugins │ ├── __init__.py │ ├── art.py │ ├── classic.py │ ├── extract.py │ ├── fixup.py │ ├── genres.py │ ├── itunes.py │ ├── jsontag.py │ ├── lameinfo.py │ ├── lastfm.py │ ├── mimetype.py │ ├── nfo.py │ ├── pymod.py │ ├── stats.py │ ├── xep_118.py │ └── yamltag.py └── utils │ ├── __init__.py │ ├── art.py │ ├── binfuncs.py │ ├── console.py │ ├── log.py │ └── prompt.py ├── pdm.lock ├── pyproject.toml ├── requirements ├── dev-requirements.txt ├── plugin-requirements.txt └── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── id3 │ ├── __init__.py │ ├── test_frames.py │ ├── test_headers.py │ ├── test_id3.py │ ├── test_rva.py │ └── test_tag.py ├── mp3 │ ├── __init__.py │ ├── test_infos.py │ └── test_mp3.py ├── pytest.ini ├── test__init__.py ├── test_binfuncs.py ├── test_classic_plugin.py ├── test_console.py ├── test_core.py ├── test_factory.py ├── test_issues.py ├── test_jsonyaml_plugin.py ├── test_lameinfo_plugin.py ├── test_main.py ├── test_mimetype.py ├── test_plugins.py ├── test_stats_plugins.py └── test_utils.py └── tox.ini /.cookiecutter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/.cookiecutter.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/rtd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/_static/rtd.css -------------------------------------------------------------------------------- /docs/_templates/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/compliance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/compliance.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/eyeD3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/eyeD3.1 -------------------------------------------------------------------------------- /docs/eyed3.id3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/eyed3.id3.rst -------------------------------------------------------------------------------- /docs/eyed3.mp3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/eyed3.mp3.rst -------------------------------------------------------------------------------- /docs/eyed3.plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/eyed3.plugins.rst -------------------------------------------------------------------------------- /docs/eyed3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/eyed3.rst -------------------------------------------------------------------------------- /docs/eyed3.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/eyed3.utils.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins.rst -------------------------------------------------------------------------------- /docs/plugins/art_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/art_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/classic_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/classic_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/extract_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/extract_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/fixup_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/fixup_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/genres_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/genres_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/itunes_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/itunes_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/json_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/json_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/lameinfo_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/lameinfo_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/mimetypes_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/mimetypes_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/nfo_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/nfo_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/pymod_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/pymod_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/stats_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/stats_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/xep118_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/xep118_plugin.rst -------------------------------------------------------------------------------- /docs/plugins/yaml_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/plugins/yaml_plugin.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | .. include:: ../README.rst 4 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /etc/eyeD3.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/etc/eyeD3.bash -------------------------------------------------------------------------------- /etc/mycog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/etc/mycog.py -------------------------------------------------------------------------------- /examples/chapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/examples/chapters.py -------------------------------------------------------------------------------- /examples/cli_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/examples/cli_examples.sh -------------------------------------------------------------------------------- /examples/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/examples/config.ini -------------------------------------------------------------------------------- /examples/plugins/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/examples/plugins/echo.py -------------------------------------------------------------------------------- /examples/plugins/echo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/examples/plugins/echo2.py -------------------------------------------------------------------------------- /examples/tag_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/examples/tag_example.py -------------------------------------------------------------------------------- /eyed3/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/__about__.py -------------------------------------------------------------------------------- /eyed3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/__init__.py -------------------------------------------------------------------------------- /eyed3/__regarding__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/__regarding__.py -------------------------------------------------------------------------------- /eyed3/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/core.py -------------------------------------------------------------------------------- /eyed3/id3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/id3/__init__.py -------------------------------------------------------------------------------- /eyed3/id3/apple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/id3/apple.py -------------------------------------------------------------------------------- /eyed3/id3/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/id3/frames.py -------------------------------------------------------------------------------- /eyed3/id3/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/id3/headers.py -------------------------------------------------------------------------------- /eyed3/id3/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/id3/tag.py -------------------------------------------------------------------------------- /eyed3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/main.py -------------------------------------------------------------------------------- /eyed3/mimetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/mimetype.py -------------------------------------------------------------------------------- /eyed3/mp3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/mp3/__init__.py -------------------------------------------------------------------------------- /eyed3/mp3/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/mp3/headers.py -------------------------------------------------------------------------------- /eyed3/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/__init__.py -------------------------------------------------------------------------------- /eyed3/plugins/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/art.py -------------------------------------------------------------------------------- /eyed3/plugins/classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/classic.py -------------------------------------------------------------------------------- /eyed3/plugins/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/extract.py -------------------------------------------------------------------------------- /eyed3/plugins/fixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/fixup.py -------------------------------------------------------------------------------- /eyed3/plugins/genres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/genres.py -------------------------------------------------------------------------------- /eyed3/plugins/itunes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/itunes.py -------------------------------------------------------------------------------- /eyed3/plugins/jsontag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/jsontag.py -------------------------------------------------------------------------------- /eyed3/plugins/lameinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/lameinfo.py -------------------------------------------------------------------------------- /eyed3/plugins/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/lastfm.py -------------------------------------------------------------------------------- /eyed3/plugins/mimetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/mimetype.py -------------------------------------------------------------------------------- /eyed3/plugins/nfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/nfo.py -------------------------------------------------------------------------------- /eyed3/plugins/pymod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/pymod.py -------------------------------------------------------------------------------- /eyed3/plugins/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/stats.py -------------------------------------------------------------------------------- /eyed3/plugins/xep_118.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/xep_118.py -------------------------------------------------------------------------------- /eyed3/plugins/yamltag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/plugins/yamltag.py -------------------------------------------------------------------------------- /eyed3/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/utils/__init__.py -------------------------------------------------------------------------------- /eyed3/utils/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/utils/art.py -------------------------------------------------------------------------------- /eyed3/utils/binfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/utils/binfuncs.py -------------------------------------------------------------------------------- /eyed3/utils/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/utils/console.py -------------------------------------------------------------------------------- /eyed3/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/utils/log.py -------------------------------------------------------------------------------- /eyed3/utils/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/eyed3/utils/prompt.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/requirements/dev-requirements.txt -------------------------------------------------------------------------------- /requirements/plugin-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/requirements/plugin-requirements.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/id3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/id3/test_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/id3/test_frames.py -------------------------------------------------------------------------------- /tests/id3/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/id3/test_headers.py -------------------------------------------------------------------------------- /tests/id3/test_id3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/id3/test_id3.py -------------------------------------------------------------------------------- /tests/id3/test_rva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/id3/test_rva.py -------------------------------------------------------------------------------- /tests/id3/test_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/id3/test_tag.py -------------------------------------------------------------------------------- /tests/mp3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mp3/test_infos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/mp3/test_infos.py -------------------------------------------------------------------------------- /tests/mp3/test_mp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/mp3/test_mp3.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test__init__.py -------------------------------------------------------------------------------- /tests/test_binfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_binfuncs.py -------------------------------------------------------------------------------- /tests/test_classic_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_classic_plugin.py -------------------------------------------------------------------------------- /tests/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_console.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_factory.py -------------------------------------------------------------------------------- /tests/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_issues.py -------------------------------------------------------------------------------- /tests/test_jsonyaml_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_jsonyaml_plugin.py -------------------------------------------------------------------------------- /tests/test_lameinfo_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_lameinfo_plugin.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_mimetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_mimetype.py -------------------------------------------------------------------------------- /tests/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_plugins.py -------------------------------------------------------------------------------- /tests/test_stats_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_stats_plugins.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicfit/eyeD3/HEAD/tox.ini --------------------------------------------------------------------------------