]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/clicmd/special_phrases.py
Ported functions for the import of special phrases from php to python.
[nominatim.git] / nominatim / clicmd / special_phrases.py
1 """
2     Implementation of the 'import-special-phrases' command.
3 """
4 import logging
5 from nominatim.tools.special_phrases import import_from_wiki
6 from nominatim.db.connection import connect
7
8 LOG = logging.getLogger()
9
10 # Do not repeat documentation of subcommand classes.
11 # pylint: disable=C0111
12
13 class ImportSpecialPhrases:
14     """\
15     Import special phrases.
16     """
17     @staticmethod
18     def add_args(parser):
19         group = parser.add_argument_group('Input arguments')
20         group.add_argument('--from-wiki', action='store_true',
21                            help='Import special phrases from the OSM wiki to the database.')
22
23     @staticmethod
24     def run(args):
25         if args.from_wiki:
26             LOG.warning('Special phrases importation starting')
27             with connect(args.config.get_libpq_dsn()) as db_connection:
28                 import_from_wiki(args.config, db_connection)
29         return 0