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