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