X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/e10b5b6f112c057ab33ad46f8a3385d3bcd23e1d..refs/heads/main:/spec.py diff --git a/spec.py b/spec.py index 50746d7..5d708e2 100644 --- a/spec.py +++ b/spec.py @@ -12,15 +12,22 @@ from typing import Callable, IO from bs4.element import Tag from fetch import Fetcher +from images import ImageStore from texify import Texifier +# pylint: disable=too-many-instance-attributes @dataclass(frozen=True) class Spec: url: str fetcher: Fetcher + images: ImageStore htmlfilter: Callable[[bytes], bytes] domfilter: Callable[[Tag], None] texifier: Texifier + texfilter: Callable[[bytes], bytes] + icon_size: float + layout: bytes geometry: str | None texout: IO[bytes] + log: Callable[[str], None]