MSGPACK sample file
msgpack_event_batch_sample.msgpack
153 B
application/octet-stream
SHA256 verified
File details
Filename
msgpack_event_batch_sample.msgpackSize153 B (153 bytes)
MIME type
application/octet-streamExtension
.msgpackSHA256
d6a4f471b5111c22eec827ff8bd26bd2ee86238967fbe51a8cd9676c166e65f6Download commands
Use in scripts and tests
curl -L -o msgpack_event_batch_sample.msgpack \
https://samplefile.com/samples/download/data/msgpack/msgpack_event_batch_sample.msgpack/
wget -O msgpack_event_batch_sample.msgpack \
https://samplefile.com/samples/download/data/msgpack/msgpack_event_batch_sample.msgpack/
import requests
url = "https://samplefile.com/samples/download/data/msgpack/msgpack_event_batch_sample.msgpack/"
resp = requests.get(url)
with open("msgpack_event_batch_sample.msgpack", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/msgpack/msgpack_event_batch_sample.msgpack/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("msgpack_event_batch_sample.msgpack", buf);
# Download and verify SHA256
curl -L -o msgpack_event_batch_sample.msgpack https://samplefile.com/samples/download/data/msgpack/msgpack_event_batch_sample.msgpack/
echo "d6a4f471b5111c22eec827ff8bd26bd2ee86238967fbe51a8cd9676c166e65f6 msgpack_event_batch_sample.msgpack" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/msgpack/msgpack_event_batch_sample.msgpack/").content
assert hashlib.sha256(data).hexdigest() == "d6a4f471b5111c22eec827ff8bd26bd2ee86238967fbe51a8cd9676c166e65f6"
More MSGPACK files
Other MSGPACK Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
msgpack_cache_payload_sample.msgpack |
130 B | 565fc210a41bad94… |
Download |
msgpack_nested_session_sample.msgpack |
108 B | c3c15a732fa0334a… |
Download |