TRACE sample file
trace_sample_file_1MB.trace
1.0 MB
application/octet-stream
SHA256 verified
File details
Filename
trace_sample_file_1MB.traceSize1.0 MB (1048576 bytes)
MIME type
application/octet-streamExtension
.traceSHA256
dc2095c3d141a56bd9e9d4b9d390a0376f5ab515a61da2ccad27c7fb7e27f61aDownload commands
Use in scripts and tests
curl -L -o trace_sample_file_1MB.trace \
https://samplefile.com/samples/download/log/trace/trace_sample_file_1MB.trace/
wget -O trace_sample_file_1MB.trace \
https://samplefile.com/samples/download/log/trace/trace_sample_file_1MB.trace/
import requests
url = "https://samplefile.com/samples/download/log/trace/trace_sample_file_1MB.trace/"
resp = requests.get(url)
with open("trace_sample_file_1MB.trace", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/log/trace/trace_sample_file_1MB.trace/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("trace_sample_file_1MB.trace", buf);
# Download and verify SHA256
curl -L -o trace_sample_file_1MB.trace https://samplefile.com/samples/download/log/trace/trace_sample_file_1MB.trace/
echo "dc2095c3d141a56bd9e9d4b9d390a0376f5ab515a61da2ccad27c7fb7e27f61a trace_sample_file_1MB.trace" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/log/trace/trace_sample_file_1MB.trace/").content
assert hashlib.sha256(data).hexdigest() == "dc2095c3d141a56bd9e9d4b9d390a0376f5ab515a61da2ccad27c7fb7e27f61a"
More TRACE files
Other TRACE Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
trace_distributed_request_sample.trace |
354 B | daf42c39f9b9a024… |
Download |
trace_sample_file_200KB.trace |
200.0 KB | e4ce703b131fff95… |
Download |
trace_sample_file_500KB.trace |
500.0 KB | 60e602dae4e60145… |
Download |
trace_sample_file_50KB.trace |
50.0 KB | 5960772570855e39… |
Download |