mirror of
https://github.com/marian-nmt/marian.git
synced 2024-12-11 09:54:22 +03:00
6 lines
145 B
Python
6 lines
145 B
Python
import sys
|
|
import json
|
|
import yaml
|
|
|
|
yaml.safe_dump(json.load(sys.stdin), sys.stdout,
|
|
default_flow_style=False, allow_unicode=True) |