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