forked from fzyzcjy/grafana_dashboard_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrafana_dashboard.py
42 lines (31 loc) · 905 Bytes
/
grafana_dashboard.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from pathlib import Path
import typer
import grafana_dashboard.converter.json_to_python
import grafana_dashboard.converter.python_to_json
from grafana_dashboard import converter
app = typer.Typer()
@app.command()
def json_to_python(
json_path: Path = typer.Option(...),
python_path: Path = typer.Option(...),
):
converter.json_to_python.convert(
json_path=json_path,
python_path=python_path,
)
@app.command()
def python_to_json(
python_base_dir: Path = typer.Option(...),
python_base_package: str = typer.Option(...),
json_dir: Path = typer.Option(...),
):
converter.python_to_json.convert_package(
python_base_dir=python_base_dir,
python_base_package=python_base_package,
json_dir=json_dir,
)
# https://github.com/tiangolo/typer/issues/34
def run():
app()
if __name__ == "__main__":
run()