7Z sample file
7z_sample_file_50KB.7z
50.1 KB
application/x-7z-compressed
SHA256 verified
File details
Filename
7z_sample_file_50KB.7zSize50.1 KB (51330 bytes)
MIME type
application/x-7z-compressedExtension
.7zSHA256
0d0a2379b68282b99619b011736d02181d0bbb6729588a4459cd19e5e0895a71Download commands
Use in scripts and tests
curl -L -o 7z_sample_file_50KB.7z \
https://samplefile.com/samples/download/archive/7z/7z_sample_file_50KB.7z/
wget -O 7z_sample_file_50KB.7z \
https://samplefile.com/samples/download/archive/7z/7z_sample_file_50KB.7z/
import requests
url = "https://samplefile.com/samples/download/archive/7z/7z_sample_file_50KB.7z/"
resp = requests.get(url)
with open("7z_sample_file_50KB.7z", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/archive/7z/7z_sample_file_50KB.7z/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("7z_sample_file_50KB.7z", buf);
# Download and verify SHA256
curl -L -o 7z_sample_file_50KB.7z https://samplefile.com/samples/download/archive/7z/7z_sample_file_50KB.7z/
echo "0d0a2379b68282b99619b011736d02181d0bbb6729588a4459cd19e5e0895a71 7z_sample_file_50KB.7z" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/archive/7z/7z_sample_file_50KB.7z/").content
assert hashlib.sha256(data).hexdigest() == "0d0a2379b68282b99619b011736d02181d0bbb6729588a4459cd19e5e0895a71"
More 7Z files
Other 7Z Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
7z_sample_file_1MB.7z |
1.0 MB | 7e264b5bfde5b1a5… |
Download |
7z_sample_file_200KB.7z |
200.1 KB | 1e7f07e72d4c9814… |
Download |
7z_sample_file_500KB.7z |
500.1 KB | 6fe07da5018c94e1… |
Download |
Learn more