1 # SPDX-License-Identifier: GPL-3.0-or-later
3 # This file is part of Nominatim. (https://nominatim.org)
5 # Copyright (C) 2023 by the Nominatim developer community.
6 # For a full list of authors see the git log.
8 The public interface of the Nominatim library.
10 Classes and functions defined in this file are considered stable. Always
11 import from this file, not from the source files directly.
14 # See also https://github.com/PyCQA/pylint/issues/6006
15 # pylint: disable=useless-import-alias
17 from nominatim.api.core import (NominatimAPI as NominatimAPI,
18 NominatimAPIAsync as NominatimAPIAsync)
19 from nominatim.api.status import (StatusResult as StatusResult)