DOCX sample file
docx_project_brief_sample.docx
2.6 KB
application/vnd.openxmlformats-officedocument.wordprocessingml.document
SHA256 verified
File details
Filename
docx_project_brief_sample.docxSize2.6 KB (2713 bytes)
MIME type
application/vnd.openxmlformats-officedocument.wordprocessingml.documentExtension
.docxSHA256
aa1dec3b5191835cbce1470572f4791bfdc18310ae9b8570162197d90dbdcbd4Download commands
Use in scripts and tests
curl -L -o docx_project_brief_sample.docx \
https://samplefile.com/samples/download/document/docx/docx_project_brief_sample.docx/
wget -O docx_project_brief_sample.docx \
https://samplefile.com/samples/download/document/docx/docx_project_brief_sample.docx/
import requests
url = "https://samplefile.com/samples/download/document/docx/docx_project_brief_sample.docx/"
resp = requests.get(url)
with open("docx_project_brief_sample.docx", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/docx/docx_project_brief_sample.docx/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("docx_project_brief_sample.docx", buf);
# Download and verify SHA256
curl -L -o docx_project_brief_sample.docx https://samplefile.com/samples/download/document/docx/docx_project_brief_sample.docx/
echo "aa1dec3b5191835cbce1470572f4791bfdc18310ae9b8570162197d90dbdcbd4 docx_project_brief_sample.docx" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/docx/docx_project_brief_sample.docx/").content
assert hashlib.sha256(data).hexdigest() == "aa1dec3b5191835cbce1470572f4791bfdc18310ae9b8570162197d90dbdcbd4"
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_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