Spaces:
Sleeping
Sleeping
from abc import ABC, abstractmethod | |
from pathlib import Path | |
from attrs import define, field | |
class BaseParser(ABC): | |
file_path: Path = field() | |
def parse(self) -> dict: ... | |