676be5dd19
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
12 lines
209 B
Python
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))
|