mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-09 15:00:07 +00:00
10 lines
190 B
Python
10 lines
190 B
Python
|
#!/usr/bin/env python2
|
||
|
|
||
|
import sys
|
||
|
import json
|
||
|
|
||
|
dec = json.JSONDecoder()
|
||
|
data, pos = dec.raw_decode(sys.stdin.read())
|
||
|
json.dump(data, sys.stdout, indent = 2, separators = (',', ': '))
|
||
|
print
|