QBO sample file
qbo_reconciliation_export_sample.qbo
997 B
application/vnd.intu.qbo
SHA256 verified
File details
Filename
qbo_reconciliation_export_sample.qboSize997 B (997 bytes)
MIME type
application/vnd.intu.qboExtension
.qboSHA256
d9a9e528927995c1973167539130e38c3920cfb2b7d77fe43f139bc12d24f934Download commands
Use in scripts and tests
curl -L -o qbo_reconciliation_export_sample.qbo \
https://samplefile.com/samples/download/data/qbo/qbo_reconciliation_export_sample.qbo/
wget -O qbo_reconciliation_export_sample.qbo \
https://samplefile.com/samples/download/data/qbo/qbo_reconciliation_export_sample.qbo/
import requests
url = "https://samplefile.com/samples/download/data/qbo/qbo_reconciliation_export_sample.qbo/"
resp = requests.get(url)
with open("qbo_reconciliation_export_sample.qbo", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/qbo/qbo_reconciliation_export_sample.qbo/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("qbo_reconciliation_export_sample.qbo", buf);
# Download and verify SHA256
curl -L -o qbo_reconciliation_export_sample.qbo https://samplefile.com/samples/download/data/qbo/qbo_reconciliation_export_sample.qbo/
echo "d9a9e528927995c1973167539130e38c3920cfb2b7d77fe43f139bc12d24f934 qbo_reconciliation_export_sample.qbo" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/qbo/qbo_reconciliation_export_sample.qbo/").content
assert hashlib.sha256(data).hexdigest() == "d9a9e528927995c1973167539130e38c3920cfb2b7d77fe43f139bc12d24f934"
More QBO files
Other QBO Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
qbo_business_checking_download_sample.qbo |
995 B | dd493c6258dc7e29… |
Download |
qbo_credit_card_download_sample.qbo |
975 B | 43f8e7e931395062… |
Download |