Source code for sample_id.io

import logging

logger = logging.getLogger(__name__)


[docs]class Track(object): def __init__(self, id: str, path: str): self.id = id self.path = path