XLSX sample file
xlsx_inventory_two_sheet_sample.xlsx
3.1 KB
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
SHA256 verified
File details
Filename
xlsx_inventory_two_sheet_sample.xlsxSize3.1 KB (3208 bytes)
MIME type
application/vnd.openxmlformats-officedocument.spreadsheetml.sheetExtension
.xlsxSHA256
23ec535664cc82a4a24b65c417ec3f6392d7a3cee9062fc50de5be537a072aabDownload commands
Use in scripts and tests
curl -L -o xlsx_inventory_two_sheet_sample.xlsx \
https://samplefile.com/samples/download/document/xlsx/xlsx_inventory_two_sheet_sample.xlsx/
wget -O xlsx_inventory_two_sheet_sample.xlsx \
https://samplefile.com/samples/download/document/xlsx/xlsx_inventory_two_sheet_sample.xlsx/
import requests
url = "https://samplefile.com/samples/download/document/xlsx/xlsx_inventory_two_sheet_sample.xlsx/"
resp = requests.get(url)
with open("xlsx_inventory_two_sheet_sample.xlsx", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/xlsx/xlsx_inventory_two_sheet_sample.xlsx/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("xlsx_inventory_two_sheet_sample.xlsx", buf);
# Download and verify SHA256
curl -L -o xlsx_inventory_two_sheet_sample.xlsx https://samplefile.com/samples/download/document/xlsx/xlsx_inventory_two_sheet_sample.xlsx/
echo "23ec535664cc82a4a24b65c417ec3f6392d7a3cee9062fc50de5be537a072aab xlsx_inventory_two_sheet_sample.xlsx" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/xlsx/xlsx_inventory_two_sheet_sample.xlsx/").content
assert hashlib.sha256(data).hexdigest() == "23ec535664cc82a4a24b65c417ec3f6392d7a3cee9062fc50de5be537a072aab"
More XLSX files
Other XLSX Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
xlsx_formula_recalc_sample.xlsx |
2.8 KB | f08a2494f697dc2c… |
Download |
xlsx_monthly_budget_sample.xlsx |
2.8 KB | a36e46fc78660b78… |
Download |
xlsx_wide_table_sample.xlsx |
3.0 KB | bfb260e93898129a… |
Download |
Learn more