├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── m3u_maker.py ├── setup.py └── tests ├── test_files ├── 01 ok.mp3 ├── 02 ok.flac ├── 03 no.png └── 04 ok.m4a └── test_main.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/README.md -------------------------------------------------------------------------------- /m3u_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/m3u_maker.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_files/01 ok.mp3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_files/02 ok.flac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_files/03 no.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_files/04 ok.m4a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CastixGitHub/m3u_maker/HEAD/tests/test_main.py --------------------------------------------------------------------------------