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 .core import (NominatimAPI as NominatimAPI,
18 NominatimAPIAsync as NominatimAPIAsync)
19 from .status import (StatusResult as StatusResult)
20 from .types import (PlaceID as PlaceID,
25 GeometryFormat as GeometryFormat,
26 DataLayer as DataLayer)
27 from .results import (SourceTable as SourceTable,
28 AddressLine as AddressLine,
29 AddressLines as AddressLines,
31 WordInfos as WordInfos,
32 DetailedResult as DetailedResult,
33 ReverseResult as ReverseResult,
34 ReverseResults as ReverseResults,
35 SearchResult as SearchResult,
36 SearchResults as SearchResults)
37 from .localization import (Locales as Locales)