Skip to content

base

django_spire.contrib.sync.file.media.base

Store

Bases: Protocol

download

Source code in django_spire/contrib/sync/file/media/base.py
def download(self, key: str, target_path: Path) -> None: ...

list_keys

Source code in django_spire/contrib/sync/file/media/base.py
def list_keys(self, prefix: str) -> set[str]: ...

upload

Source code in django_spire/contrib/sync/file/media/base.py
def upload(self, key: str, source_path: Path, content_type: str | None = None) -> str: ...