ZIP sample file
spreadsheet_ingestion_fixture_pack.zip
10.7 KB
application/zip
SHA256 verified
File details
Filename
spreadsheet_ingestion_fixture_pack.zipSize10.7 KB (10946 bytes)
MIME type
application/zipExtension
.zipSHA256
355ac5c78fcdee13e06ce194cb9824f4c2760ef9818ab2cd480bf43e13e43f4bDownload commands
Use in scripts and tests
curl -L -o spreadsheet_ingestion_fixture_pack.zip \
https://samplefile.com/samples/download/archive/zip/spreadsheet_ingestion_fixture_pack.zip/
wget -O spreadsheet_ingestion_fixture_pack.zip \
https://samplefile.com/samples/download/archive/zip/spreadsheet_ingestion_fixture_pack.zip/
import requests
url = "https://samplefile.com/samples/download/archive/zip/spreadsheet_ingestion_fixture_pack.zip/"
resp = requests.get(url)
with open("spreadsheet_ingestion_fixture_pack.zip", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/archive/zip/spreadsheet_ingestion_fixture_pack.zip/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("spreadsheet_ingestion_fixture_pack.zip", buf);
# Download and verify SHA256
curl -L -o spreadsheet_ingestion_fixture_pack.zip https://samplefile.com/samples/download/archive/zip/spreadsheet_ingestion_fixture_pack.zip/
echo "355ac5c78fcdee13e06ce194cb9824f4c2760ef9818ab2cd480bf43e13e43f4b spreadsheet_ingestion_fixture_pack.zip" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/archive/zip/spreadsheet_ingestion_fixture_pack.zip/").content
assert hashlib.sha256(data).hexdigest() == "355ac5c78fcdee13e06ce194cb9824f4c2760ef9818ab2cd480bf43e13e43f4b"
More ZIP files
Other ZIP Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
accounting_system_exchange_fixture_pack.zip |
2.7 KB | 24ba1110b6bde09d… |
Download |
api_contract_fixture_pack.zip |
2.0 KB | 9cfd4c9cde8c5133… |
Download |
api_replay_fixture_pack.zip |
3.3 KB | cb0a4b1a81d8430d… |
Download |
auth_token_validation_fixture_pack.zip |
5.3 KB | 874752a26137b094… |
Download |
bank_statement_import_fixture_pack.zip |
3.6 KB | 0e36242e6e31c45e… |
Download |
batch_stream_replay_fixture_pack.zip |
2.9 KB | 626328dbad32bebe… |
Download |
Learn more