Add script to convert JSON to YAML
parent
3dbd014b33
commit
69ad8cd996
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import yaml, json, sys
|
||||||
|
|
||||||
|
print(yaml.dump(json.load(open(sys.argv[1])), allow_unicode=True), end='')
|
Loading…
Reference in New Issue