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