# pageindex/utils.py # Compatibility shim. The indexing utilities now live in pageindex/index/utils.py, # which is the single source of truth. This module re-exports them so legacy # imports (`from pageindex.utils import ...`) keep working. from .index.utils import * # noqa: F401,F403,E402 # Legacy 0.2.x alias. index.utils keeps it private (_config) so its star-export # can't shadow the pageindex.config submodule; re-expose it only in this shim. from types import SimpleNamespace as config # noqa: E402,F401