mirror of https://github.com/openXC7/prjxray.git
12 lines
165 B
Python
12 lines
165 B
Python
|
|
import pyjson5
|
||
|
|
import simplejson
|
||
|
|
import sys
|
||
|
|
|
||
|
|
|
||
|
|
def main():
|
||
|
|
simplejson.dump(pyjson5.load(sys.stdin), sys.stdout, indent=2)
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|