add skeleton for new Nominatim executables

This commit is contained in:
Sarah Hoffmann
2021-01-12 10:17:28 +01:00
parent a74e736283
commit 612fd50612
4 changed files with 36 additions and 0 deletions

0
nominatim/__init__.py Normal file
View File

14
nominatim/tools.py Normal file
View File

@@ -0,0 +1,14 @@
"""
Provides the fronting for the Nominatim tools, command line and environment
parsing.
"""
def setup(**kwargs):
print("Functions for creating a Nominatim database and importing data.")
def update(**kwargs):
print("Functions for updating a Nominatim database.")
def admin(**kwargs):
print("Functions for maintaining a Nomiantim database.")