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