AVRO sample file
avro_nullable_profile_sample.avro
495 B
application/octet-stream
SHA256 verified
File details
Filename
avro_nullable_profile_sample.avroSize495 B (495 bytes)
MIME type
application/octet-streamExtension
.avroSHA256
04bf310c9662d63e0fa819554388be4c97beaad81827dc75147ba6852706dab9Download commands
Use in scripts and tests
curl -L -o avro_nullable_profile_sample.avro \
https://samplefile.com/samples/download/data/avro/avro_nullable_profile_sample.avro/
wget -O avro_nullable_profile_sample.avro \
https://samplefile.com/samples/download/data/avro/avro_nullable_profile_sample.avro/
import requests
url = "https://samplefile.com/samples/download/data/avro/avro_nullable_profile_sample.avro/"
resp = requests.get(url)
with open("avro_nullable_profile_sample.avro", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/avro/avro_nullable_profile_sample.avro/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("avro_nullable_profile_sample.avro", buf);
# Download and verify SHA256
curl -L -o avro_nullable_profile_sample.avro https://samplefile.com/samples/download/data/avro/avro_nullable_profile_sample.avro/
echo "04bf310c9662d63e0fa819554388be4c97beaad81827dc75147ba6852706dab9 avro_nullable_profile_sample.avro" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/avro/avro_nullable_profile_sample.avro/").content
assert hashlib.sha256(data).hexdigest() == "04bf310c9662d63e0fa819554388be4c97beaad81827dc75147ba6852706dab9"
More AVRO files
Other AVRO Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
avro_schema_evolution_sample.avro |
483 B | 00c98e0a7cc70cc8… |
Download |
avro_user_events_sample.avro |
501 B | 2c968f7322b25a0d… |
Download |