BSON sample file
bson_nested_profile_sample.bson
150 B
application/octet-stream
SHA256 verified
File details
Filename
bson_nested_profile_sample.bsonSize150 B (150 bytes)
MIME type
application/octet-streamExtension
.bsonSHA256
c045692dc66539ad2a4ea1f8839e9a859560fa965211815ef3979208128e1370Download commands
Use in scripts and tests
curl -L -o bson_nested_profile_sample.bson \
https://samplefile.com/samples/download/data/bson/bson_nested_profile_sample.bson/
wget -O bson_nested_profile_sample.bson \
https://samplefile.com/samples/download/data/bson/bson_nested_profile_sample.bson/
import requests
url = "https://samplefile.com/samples/download/data/bson/bson_nested_profile_sample.bson/"
resp = requests.get(url)
with open("bson_nested_profile_sample.bson", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/bson/bson_nested_profile_sample.bson/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("bson_nested_profile_sample.bson", buf);
# Download and verify SHA256
curl -L -o bson_nested_profile_sample.bson https://samplefile.com/samples/download/data/bson/bson_nested_profile_sample.bson/
echo "c045692dc66539ad2a4ea1f8839e9a859560fa965211815ef3979208128e1370 bson_nested_profile_sample.bson" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/bson/bson_nested_profile_sample.bson/").content
assert hashlib.sha256(data).hexdigest() == "c045692dc66539ad2a4ea1f8839e9a859560fa965211815ef3979208128e1370"
More BSON files
Other BSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
bson_binary_attachment_sample.bson |
104 B | 3a42993f7800aaf7… |
Download |
bson_order_payload_sample.bson |
156 B | f9f4c9072d585299… |
Download |