Skip to content

Instantly share code, notes, and snippets.

@salekseev
Forked from zackdever/unmsgpack.py
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save salekseev/e823e3783221f6c49f82 to your computer and use it in GitHub Desktop.

Select an option

Save salekseev/e823e3783221f6c49f82 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import msgpack
import sys
try:
while True:
line = sys.stdin.readline().strip('\n')
try:
print msgpack.unpackb(line)
except (TypeError, ValueError, msgpack.exceptions.UnpackValueError,
msgpack.exceptions.ExtraData):
print line
except KeyboardInterrupt:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment