RAR sample file
rar_sample_file_200KB.rar
200.0 KB
application/vnd.rar
SHA256 verified
File details
Filename
rar_sample_file_200KB.rarSize200.0 KB (204800 bytes)
MIME type
application/vnd.rarExtension
.rarSHA256
855f97a90334df3307b8f7b2ece5e8b85815eb64c6835351081fb7d4bf569cd9Download commands
Use in scripts and tests
curl -L -o rar_sample_file_200KB.rar \
https://samplefile.com/samples/download/archive/rar/rar_sample_file_200KB.rar/
wget -O rar_sample_file_200KB.rar \
https://samplefile.com/samples/download/archive/rar/rar_sample_file_200KB.rar/
import requests
url = "https://samplefile.com/samples/download/archive/rar/rar_sample_file_200KB.rar/"
resp = requests.get(url)
with open("rar_sample_file_200KB.rar", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/archive/rar/rar_sample_file_200KB.rar/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("rar_sample_file_200KB.rar", buf);
# Download and verify SHA256
curl -L -o rar_sample_file_200KB.rar https://samplefile.com/samples/download/archive/rar/rar_sample_file_200KB.rar/
echo "855f97a90334df3307b8f7b2ece5e8b85815eb64c6835351081fb7d4bf569cd9 rar_sample_file_200KB.rar" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/archive/rar/rar_sample_file_200KB.rar/").content
assert hashlib.sha256(data).hexdigest() == "855f97a90334df3307b8f7b2ece5e8b85815eb64c6835351081fb7d4bf569cd9"
More RAR files
Other RAR Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
rar_sample_file_1MB.rar |
1.0 MB | 504f88870be77b33… |
Download |
rar_sample_file_500KB.rar |
500.0 KB | 91a2e20692eaa2df… |
Download |
rar_sample_file_50KB.rar |
50.0 KB | 64a9acb82bb2cebb… |
Download |
Learn more