This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# python itunes_xml_to_m3u.py --help | |
import logging | |
import plistlib | |
import re | |
import typing as tp | |
from pathlib import Path | |
from urllib.parse import unquote | |
logging.basicConfig(format="%(levelname)s: %(message)s", level=logging.INFO) | |
logger = logging.getLogger() |