tileoven/yaml2mml.py

4 lines
104 B
Python
Raw Normal View History

2018-11-11 02:14:00 +03:00
#!/usr/bin/env python
import sys, yaml, json
json.dump(yaml.safe_load(sys.stdin), sys.stdout, indent=2)