ORC sample file
orc_test1_sample.orc
1.7 KB
audio/csound
SHA256 verified
File details
Filename
orc_test1_sample.orcSize1.7 KB (1711 bytes)
MIME type
audio/csoundExtension
.orcSHA256
03827180c09f7d3933f7e5d3d504f5b60d93958651473d60ee220c9aace8bea0Download commands
Use in scripts and tests
curl -L -o orc_test1_sample.orc \
https://samplefile.com/samples/download/data/orc/orc_test1_sample.orc/
wget -O orc_test1_sample.orc \
https://samplefile.com/samples/download/data/orc/orc_test1_sample.orc/
import requests
url = "https://samplefile.com/samples/download/data/orc/orc_test1_sample.orc/"
resp = requests.get(url)
with open("orc_test1_sample.orc", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/orc/orc_test1_sample.orc/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("orc_test1_sample.orc", buf);
# Download and verify SHA256
curl -L -o orc_test1_sample.orc https://samplefile.com/samples/download/data/orc/orc_test1_sample.orc/
echo "03827180c09f7d3933f7e5d3d504f5b60d93958651473d60ee220c9aace8bea0 orc_test1_sample.orc" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/orc/orc_test1_sample.orc/").content
assert hashlib.sha256(data).hexdigest() == "03827180c09f7d3933f7e5d3d504f5b60d93958651473d60ee220c9aace8bea0"
More ORC files
Other ORC Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
orc_metadata_sample.orc |
41.0 KB | 0a440fa2da8b29d3… |
Download |
orc_predicate_pushdown_sample.orc |
15.3 KB | 9e0aa4e02e4d1e38… |
Download |