Wegwichtel/tools/python/restore_route.py
2026-06-17 11:41:36 +02:00

13 lines
505 B
Python

#!/usr/bin/env python3
import argparse
from common import add_common_arguments, ask, client_from_args, run
parser = argparse.ArgumentParser(description="Gelöschte Route wiederherstellen")
add_common_arguments(parser)
parser.add_argument("--route-id", type=int)
args = parser.parse_args()
def action():
client = client_from_args(args)
route_id = ask("Route-ID", args.route_id, required=True, cast=int)
return client.request("POST", f"/api/routes/{route_id}/restore", json_body={})
run(action)