swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 10443b8a17c4bd866884fe9c572ba8d13391656c authored by Antoine R. Dumont (@ardumont) on 25 June 2020, 16:37:18 UTC
Iterate over paginated visits in batches to retrieve latest visit/snapshot
Tip revision: 10443b8
__init__.py
from pkgutil import extend_path
from typing import Iterable

__path__ = extend_path(__path__, __name__)  # type: Iterable[str]
back to top