"""
Fetch content from the internet.
"""
from __future__ import annotations
from typing import Mapping, TYPE_CHECKING
from typing_extensions import override
from betty.fetch import Fetcher, FetchResponse, FetchError
from betty.locale.localizable import static
if TYPE_CHECKING:
from pathlib import Path
[docs]
class StaticFetcher(Fetcher):
"""
Return predefined (static) fetch responses.
"""