mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-17 01:01:03 +02:00
10 lines
155 B
Text
10 lines
155 B
Text
|
|
#!/usr/bin/env python3
|
||
|
|
|
||
|
|
import msgpack
|
||
|
|
import sys
|
||
|
|
|
||
|
|
unpacker = msgpack.Unpacker(sys.stdin.buffer, raw=False)
|
||
|
|
for unpacked in unpacker:
|
||
|
|
print(unpacked)
|
||
|
|
|