INNER CODE UNIT · Python
ImagePage
yurijmikhalevich/rclip · rclip/main.py:78
class ImagePage(NamedTuple):
filepaths: list[str]
next_cursor: "RClip.ImageCursor | None"
def __init__(
self,
model_instance: model.Model,
database: db.DB,
indexing_batch_size: int,
exclude_dirs: Optional[List[str]],
enable_raw_support: bool = False,
max_image_pixels: helpers.MaxImagePixels = helpers.AUTO_MAX_IMAGE_PIXELS,
include_hidden: bool = False,
):
self._model = model_instance
self._db = database
self._indexing_batch_size = indexing_batch_size
self._enable_raw_support = enable_raw_support