mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-17 09:11:03 +02:00
Preliminary capability, knowledge cores with msgpack
This commit is contained in:
parent
319f9ac04a
commit
b918b4d8aa
5 changed files with 398 additions and 3 deletions
9
trustgraph-cli/scripts/dump-msgpack
Executable file
9
trustgraph-cli/scripts/dump-msgpack
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import msgpack
|
||||
import sys
|
||||
|
||||
unpacker = msgpack.Unpacker(sys.stdin.buffer, raw=False)
|
||||
for unpacked in unpacker:
|
||||
print(unpacked)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue