MBOX sample file
mbox_support_archive_sample.mbox
2.3 KB
application/mbox
SHA256 verified
File details
Filename
mbox_support_archive_sample.mboxSize2.3 KB (2398 bytes)
MIME type
application/mboxExtension
.mboxSHA256
2b974b86db1d6d1170692fca6b7e2e41f26d56d190fe0ff67557b6129d282934Download commands
Use in scripts and tests
curl -L -o mbox_support_archive_sample.mbox \
https://samplefile.com/samples/download/document/mbox/mbox_support_archive_sample.mbox/
wget -O mbox_support_archive_sample.mbox \
https://samplefile.com/samples/download/document/mbox/mbox_support_archive_sample.mbox/
import requests
url = "https://samplefile.com/samples/download/document/mbox/mbox_support_archive_sample.mbox/"
resp = requests.get(url)
with open("mbox_support_archive_sample.mbox", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/mbox/mbox_support_archive_sample.mbox/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("mbox_support_archive_sample.mbox", buf);
# Download and verify SHA256
curl -L -o mbox_support_archive_sample.mbox https://samplefile.com/samples/download/document/mbox/mbox_support_archive_sample.mbox/
echo "2b974b86db1d6d1170692fca6b7e2e41f26d56d190fe0ff67557b6129d282934 mbox_support_archive_sample.mbox" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/mbox/mbox_support_archive_sample.mbox/").content
assert hashlib.sha256(data).hexdigest() == "2b974b86db1d6d1170692fca6b7e2e41f26d56d190fe0ff67557b6129d282934"
More MBOX files
Other MBOX Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
mbox_export_review_sample.mbox |
2.4 KB | eff8ec87f111e6b0… |
Download |
Learn more