DOCX sample file
docx_sample_file_200KB.docx
11.0 KB
application/vnd.openxmlformats-officedocument.wordprocessingml.document
SHA256 verified
File details
Filename
docx_sample_file_200KB.docxSize11.0 KB (11248 bytes)
MIME type
application/vnd.openxmlformats-officedocument.wordprocessingml.documentExtension
.docxSHA256
2d724fe45af2e9081c3fb2c227672c85dc50fc56fe24c4d95b8e46104e0c9da0Download commands
Use in scripts and tests
curl -L -o docx_sample_file_200KB.docx \
https://samplefile.com/samples/download/document/docx/docx_sample_file_200KB.docx/
wget -O docx_sample_file_200KB.docx \
https://samplefile.com/samples/download/document/docx/docx_sample_file_200KB.docx/
import requests
url = "https://samplefile.com/samples/download/document/docx/docx_sample_file_200KB.docx/"
resp = requests.get(url)
with open("docx_sample_file_200KB.docx", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/docx/docx_sample_file_200KB.docx/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("docx_sample_file_200KB.docx", buf);
# Download and verify SHA256
curl -L -o docx_sample_file_200KB.docx https://samplefile.com/samples/download/document/docx/docx_sample_file_200KB.docx/
echo "2d724fe45af2e9081c3fb2c227672c85dc50fc56fe24c4d95b8e46104e0c9da0 docx_sample_file_200KB.docx" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/docx/docx_sample_file_200KB.docx/").content
assert hashlib.sha256(data).hexdigest() == "2d724fe45af2e9081c3fb2c227672c85dc50fc56fe24c4d95b8e46104e0c9da0"
More DOCX files
Other DOCX Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
docx_meeting_notes_sample.docx |
2.7 KB | 59c39f303e95c4d1… |
Download |
docx_policy_manual_sample.docx |
2.6 KB | 2692021da6d4fc94… |
Download |
docx_project_brief_sample.docx |
2.6 KB | aa1dec3b5191835c… |
Download |
docx_sample_file_1MB.docx |
16.4 KB | 6154fc022b2ac450… |
Download |
docx_sample_file_500KB.docx |
13.0 KB | 77e82f300348fefa… |
Download |
docx_sample_file_50KB.docx |
10.0 KB | 9c00b43e259fbe22… |
Download |
Learn more