mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
- the command is now --import-special-phrases - the output is not an sql file anymore, data are directly imported to the database. - the little part on the documentation (section data import) has been modified.
14 lines
421 B
Python
14 lines
421 B
Python
"""
|
|
Subcommand definitions for the command-line tool.
|
|
"""
|
|
|
|
from .setup import SetupAll
|
|
from .replication import UpdateReplication
|
|
from .api import APISearch, APIReverse, APILookup, APIDetails, APIStatus
|
|
from .index import UpdateIndex
|
|
from .refresh import UpdateRefresh
|
|
from .admin import AdminFuncs
|
|
from .freeze import SetupFreeze
|
|
from .transition import AdminTransition
|
|
from .special_phrases import ImportSpecialPhrases
|