6 lines
122 B
Plaintext
6 lines
122 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
import yaml, json, sys
|
||
|
|
||
|
print(yaml.dump(json.load(open(sys.argv[1])), allow_unicode=True), end='')
|