Source code for audify.domain.reader

from abc import ABC, abstractmethod
from pathlib import Path


[docs] class Reader(ABC): @abstractmethod def __init__(self, path: str | Path): self.path: Path self.cleaned_text: str ...
[docs] @abstractmethod def read(self): pass