ODT sample file
odt_sample_file_500KB.odt
8.5 KB
application/vnd.oasis.opendocument.text
SHA256 verified
File details
Filename
odt_sample_file_500KB.odtSize8.5 KB (8753 bytes)
MIME type
application/vnd.oasis.opendocument.textExtension
.odtSHA256
8296cca2241e1d3121d02f33107967d0af2e54df5da6c055bf920e55e7b7be6bDownload commands
Use in scripts and tests
curl -L -o odt_sample_file_500KB.odt \
https://samplefile.com/samples/download/document/odt/odt_sample_file_500KB.odt/
wget -O odt_sample_file_500KB.odt \
https://samplefile.com/samples/download/document/odt/odt_sample_file_500KB.odt/
import requests
url = "https://samplefile.com/samples/download/document/odt/odt_sample_file_500KB.odt/"
resp = requests.get(url)
with open("odt_sample_file_500KB.odt", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/odt/odt_sample_file_500KB.odt/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("odt_sample_file_500KB.odt", buf);
# Download and verify SHA256
curl -L -o odt_sample_file_500KB.odt https://samplefile.com/samples/download/document/odt/odt_sample_file_500KB.odt/
echo "8296cca2241e1d3121d02f33107967d0af2e54df5da6c055bf920e55e7b7be6b odt_sample_file_500KB.odt" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/odt/odt_sample_file_500KB.odt/").content
assert hashlib.sha256(data).hexdigest() == "8296cca2241e1d3121d02f33107967d0af2e54df5da6c055bf920e55e7b7be6b"
More ODT files
Other ODT Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
odt_sample_file_1MB.odt |
10.3 KB | b290f27fc1d4d1bd… |
Download |
odt_sample_file_200KB.odt |
7.5 KB | 5f27bfb74b2068c4… |
Download |
odt_sample_file_50KB.odt |
7.0 KB | c90b7ca3c3459520… |
Download |
Learn more