HCL sample file
hcl_sample_file_500KB.hcl
500.0 KB
application/octet-stream
SHA256 verified
File details
Filename
hcl_sample_file_500KB.hclSize500.0 KB (512000 bytes)
MIME type
application/octet-streamExtension
.hclSHA256
56df1b11b063c189655ee98bf57c68914e80848e8a95959b53567dc937900e65Download commands
Use in scripts and tests
curl -L -o hcl_sample_file_500KB.hcl \
https://samplefile.com/samples/download/data/hcl/hcl_sample_file_500KB.hcl/
wget -O hcl_sample_file_500KB.hcl \
https://samplefile.com/samples/download/data/hcl/hcl_sample_file_500KB.hcl/
import requests
url = "https://samplefile.com/samples/download/data/hcl/hcl_sample_file_500KB.hcl/"
resp = requests.get(url)
with open("hcl_sample_file_500KB.hcl", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/hcl/hcl_sample_file_500KB.hcl/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("hcl_sample_file_500KB.hcl", buf);
# Download and verify SHA256
curl -L -o hcl_sample_file_500KB.hcl https://samplefile.com/samples/download/data/hcl/hcl_sample_file_500KB.hcl/
echo "56df1b11b063c189655ee98bf57c68914e80848e8a95959b53567dc937900e65 hcl_sample_file_500KB.hcl" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/hcl/hcl_sample_file_500KB.hcl/").content
assert hashlib.sha256(data).hexdigest() == "56df1b11b063c189655ee98bf57c68914e80848e8a95959b53567dc937900e65"
More HCL files
Other HCL Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
hcl_sample_file_1MB.hcl |
1.0 MB | ae1309dcebf26479… |
Download |
hcl_sample_file_200KB.hcl |
200.0 KB | 116287eb6882b632… |
Download |
hcl_sample_file_2MB.hcl |
2.0 MB | 166550afb7c1bd59… |
Download |
hcl_sample_file_50KB.hcl |
50.0 KB | 69830527f5845bf6… |
Download |
hcl_sample_file_5MB.hcl |
5.0 MB | dc7c4f2736364da9… |
Download |
Learn more