mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 14:02:15 +00:00
indexer
This commit is contained in:
14
scripts/http_host/downloader/downloader.py
Executable file
14
scripts/http_host/downloader/downloader.py
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import click
|
||||
|
||||
|
||||
@click.command()
|
||||
@click.option('--area', default='planet', help='The area to process')
|
||||
@click.option('--version', default='latest', help='Version string, like "20231227_043106_pt"')
|
||||
def cli(area, version):
|
||||
click.echo(f'Area: {area}, version: {version}')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
cli()
|
||||
Reference in New Issue
Block a user