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
- Host: GitHub
- URL: https://github.com/zweifisch/msgpack-tool
- Owner: zweifisch
- Created: 2013-08-31T10:18:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-31T23:40:30.000Z (over 11 years ago)
- Last Synced: 2025-02-28T17:48:55.568Z (3 months ago)
- Language: Python
- Size: 105 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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 -C00000000 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
}
```