An open API service indexing awesome lists of open source software.

https://github.com/zweifisch/msgpack-tool

a cli utility for msgpack/json conversion
https://github.com/zweifisch/msgpack-tool

Last synced: about 2 months ago
JSON representation

a cli utility for msgpack/json conversion

Awesome Lists containing this project

README

        

# msgpack-tool

install via pip

```sh
pip install msgpack-tool
```

json to msgpack

```sh
echo '{"compact": true, "schema": 0}' | msgpack | hexdump -C

00000000 82 a7 63 6f 6d 70 61 63 74 c3 a6 73 63 68 65 6d |..compact..schem|
00000010 61 00 |a.|
00000012
```

msgpack to json

```sh
echo '{"compact": true, "schema": 0}' | msgpack | msgpack

{
"compact": true,
"schema": 0
}
```