python-toml/toml_test3.py
Troy Dawson 676be5dd19 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/python-toml#81771194d42eeddd742ea014b270604c0453368b
2020-10-14 20:42:46 -07:00

12 lines
209 B
Python

#!/usr/bin/env python3
import toml_test
import toml
import sys
import json
if __name__ == '__main__':
tdata = toml.loads(sys.stdin.read())
tagged = toml_test.tag(tdata)
print(json.dumps(tagged))