PROTO sample file
proto_sample_file_1MB.proto
1.0 MB
application/octet-stream
SHA256 verified
File details
Filename
proto_sample_file_1MB.protoSize1.0 MB (1048576 bytes)
MIME type
application/octet-streamExtension
.protoSHA256
16a8695e8d032d8cffbd8541ef7792eace03942882b0258b888f76957ed52e2bDownload commands
Use in scripts and tests
curl -L -o proto_sample_file_1MB.proto \
https://samplefile.com/samples/download/data/proto/proto_sample_file_1MB.proto/
wget -O proto_sample_file_1MB.proto \
https://samplefile.com/samples/download/data/proto/proto_sample_file_1MB.proto/
import requests
url = "https://samplefile.com/samples/download/data/proto/proto_sample_file_1MB.proto/"
resp = requests.get(url)
with open("proto_sample_file_1MB.proto", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/proto/proto_sample_file_1MB.proto/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("proto_sample_file_1MB.proto", buf);
# Download and verify SHA256
curl -L -o proto_sample_file_1MB.proto https://samplefile.com/samples/download/data/proto/proto_sample_file_1MB.proto/
echo "16a8695e8d032d8cffbd8541ef7792eace03942882b0258b888f76957ed52e2b proto_sample_file_1MB.proto" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/proto/proto_sample_file_1MB.proto/").content
assert hashlib.sha256(data).hexdigest() == "16a8695e8d032d8cffbd8541ef7792eace03942882b0258b888f76957ed52e2b"
More PROTO files
Other PROTO Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
proto_cdc_envelope_contract_sample.proto |
269 B | 9c17feb5945deddc… |
Download |
proto_event_bus_contract_sample.proto |
358 B | a797537f156aee63… |
Download |
proto_sample_file_200KB.proto |
200.0 KB | 726023ef8539fd71… |
Download |
proto_sample_file_2MB.proto |
2.0 MB | f7dcb830489c50d8… |
Download |
proto_sample_file_500KB.proto |
500.0 KB | f4aefea6ae919856… |
Download |
proto_sample_file_50KB.proto |
50.0 KB | 453aff9b08190637… |
Download |
Learn more