]> git.scottworley.com Git - paperdoorknob/blob - spec.py
Handle Unicode characters ≈ and ◁
[paperdoorknob] / spec.py
1 # paperdoorknob: Print glowfic
2 #
3 # This program is free software: you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License as published by the
5 # Free Software Foundation, version 3.
6
7
8 from dataclasses import dataclass
9
10 from typing import Callable, IO
11
12 from bs4.element import Tag
13
14 from fetch import Fetcher
15 from images import ImageStore
16 from texify import Texifier
17
18
19 # pylint: disable=too-many-instance-attributes
20 @dataclass(frozen=True)
21 class Spec:
22 url: str
23 fetcher: Fetcher
24 images: ImageStore
25 htmlfilter: Callable[[bytes], bytes]
26 domfilter: Callable[[Tag], None]
27 texifier: Texifier
28 texfilter: Callable[[bytes], bytes]
29 icon_size: float
30 layout: bytes
31 geometry: str | None
32 texout: IO[bytes]
33 log: Callable[[str], None]