Added tools for reading and writing WOBUZZM3U and made the sorting parameters human readable.

This commit is contained in:
The Wobbler 2025-03-07 18:59:51 +01:00
parent f7995aee9e
commit 9e20e21e6f
5 changed files with 219 additions and 40 deletions

View file

@ -0,0 +1,13 @@
#!/usr/bin/python3
def __getattr__(name):
match name:
case "WobuzzM3U":
from .wobuzzm3u import WobuzzM3U
return WobuzzM3U
case "WBZM3UData":
from .wbzm3u_data import WBZM3UData
return WBZM3UData