返回 ppt-master
__init__.py
1 """Web image source providers for PPT Master.
2
3 Each ``provider_<name>.py`` module exposes a ``search(request, *,
4 license_tier_filter)`` function returning a list of ``AssetCandidate``
5 objects, plus a ``parse_results(payload)`` helper. ``image_search.py``
6 dispatches to them by name.
7 """
8
9 from __future__ import annotations
10
10 lines PYTHON