summaryrefslogtreecommitdiffstats
path: root/cli/utils.py
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2022-05-17 11:24:49 +0200
committerJose M. Guisado <jguisado@soleta.eu>2022-05-17 11:24:49 +0200
commitb765ee50d31b1b629b7572c231d2cf2840a4146f (patch)
tree33d9b0826450d1f05fa78f1dce5041ee38bf2676 /cli/utils.py
parentd8efd3321c759440c1f9f66b55b6b2c8b1edb67a (diff)
utils: add print_json
Adds a pretty printing function for JSON data. Replaces print for print_json in corresponding cli objects. Follows commit 828d6c0ce7d4a6b4bcd95e97155460fd59856bdd ("list scopes: pretty print scope tree")
Diffstat (limited to 'cli/utils.py')
-rw-r--r--cli/utils.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/utils.py b/cli/utils.py
index 9c472c3..208be68 100644
--- a/cli/utils.py
+++ b/cli/utils.py
@@ -5,6 +5,8 @@
# Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
+import json
+
def scope_lookup(scope_id, scope_type, d):
if scope_id == d.get('id') and scope_type == d.get('type'):
return d
@@ -23,3 +25,7 @@ def ips_in_scope(scope):
for child in scope['scope']:
ips += ips_in_scope(child)
return ips
+
+def print_json(text):
+ payload = json.loads(text)
+ print(json.dumps(payload, sort_keys=True, indent=2))