]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/api/__init__.py
replace regexp_match with generic op() functions
[nominatim.git] / nominatim / api / __init__.py
index debd91197ce1e3c253da0ea87639658118ea2bd1..794cd96c054d2f68c2d888b7ec54bc9818ea0a9d 100644 (file)
@@ -20,11 +20,18 @@ from .status import (StatusResult as StatusResult)
 from .types import (PlaceID as PlaceID,
                     OsmID as OsmID,
                     PlaceRef as PlaceRef,
+                    Point as Point,
+                    Bbox as Bbox,
                     GeometryFormat as GeometryFormat,
-                    LookupDetails as LookupDetails)
+                    DataLayer as DataLayer)
 from .results import (SourceTable as SourceTable,
                       AddressLine as AddressLine,
                       AddressLines as AddressLines,
                       WordInfo as WordInfo,
                       WordInfos as WordInfos,
-                      SearchResult as SearchResult)
+                      DetailedResult as DetailedResult,
+                      ReverseResult as ReverseResult,
+                      ReverseResults as ReverseResults,
+                      SearchResult as SearchResult,
+                      SearchResults as SearchResults)
+from .localization import (Locales as Locales)