mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 21:28:10 +03:00
d545c6d73c
This is now only needed for BDD tests against the php API.
13 lines
202 B
Python
13 lines
202 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
import os
|
|
|
|
sys.path.append('@PROJECT_SOURCE_DIR@')
|
|
|
|
from nominatim.cli import get_set_parser
|
|
|
|
def get_parser():
|
|
parser = get_set_parser()
|
|
|
|
return parser.parser
|