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