ZIP sample file
browser_network_capture_fixture_pack.zip
2.3 KB
application/zip
SHA256 verified
File details
Filename
browser_network_capture_fixture_pack.zipSize2.3 KB (2383 bytes)
MIME type
application/zipExtension
.zipSHA256
38278a8dbcae509f81fb25183b50d868966105869460fb36673f9780b8ad1d52Download commands
Use in scripts and tests
curl -L -o browser_network_capture_fixture_pack.zip \
https://samplefile.com/samples/download/archive/zip/browser_network_capture_fixture_pack.zip/
wget -O browser_network_capture_fixture_pack.zip \
https://samplefile.com/samples/download/archive/zip/browser_network_capture_fixture_pack.zip/
import requests
url = "https://samplefile.com/samples/download/archive/zip/browser_network_capture_fixture_pack.zip/"
resp = requests.get(url)
with open("browser_network_capture_fixture_pack.zip", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/archive/zip/browser_network_capture_fixture_pack.zip/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("browser_network_capture_fixture_pack.zip", buf);
# Download and verify SHA256
curl -L -o browser_network_capture_fixture_pack.zip https://samplefile.com/samples/download/archive/zip/browser_network_capture_fixture_pack.zip/
echo "38278a8dbcae509f81fb25183b50d868966105869460fb36673f9780b8ad1d52 browser_network_capture_fixture_pack.zip" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/archive/zip/browser_network_capture_fixture_pack.zip/").content
assert hashlib.sha256(data).hexdigest() == "38278a8dbcae509f81fb25183b50d868966105869460fb36673f9780b8ad1d52"
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