Put it in the cli package

This commit is contained in:
Cyber MacGeddon 2024-11-25 18:44:33 +00:00
parent b918b4d8aa
commit 7711b4bfed
4 changed files with 2 additions and 1 deletions

View 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)