PPTX sample file
pptx_sample_file_200KB.pptx
27.7 KB
application/vnd.openxmlformats-officedocument.presentationml.presentation
SHA256 verified
File details
Filename
pptx_sample_file_200KB.pptxSize27.7 KB (28404 bytes)
MIME type
application/vnd.openxmlformats-officedocument.presentationml.presentationExtension
.pptxSHA256
2414c43eae3f72f8a570704f6c54a43814d7590d8515b7ff922d3222bbd96081Download commands
Use in scripts and tests
curl -L -o pptx_sample_file_200KB.pptx \
https://samplefile.com/samples/download/document/pptx/pptx_sample_file_200KB.pptx/
wget -O pptx_sample_file_200KB.pptx \
https://samplefile.com/samples/download/document/pptx/pptx_sample_file_200KB.pptx/
import requests
url = "https://samplefile.com/samples/download/document/pptx/pptx_sample_file_200KB.pptx/"
resp = requests.get(url)
with open("pptx_sample_file_200KB.pptx", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/pptx/pptx_sample_file_200KB.pptx/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("pptx_sample_file_200KB.pptx", buf);
# Download and verify SHA256
curl -L -o pptx_sample_file_200KB.pptx https://samplefile.com/samples/download/document/pptx/pptx_sample_file_200KB.pptx/
echo "2414c43eae3f72f8a570704f6c54a43814d7590d8515b7ff922d3222bbd96081 pptx_sample_file_200KB.pptx" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/pptx/pptx_sample_file_200KB.pptx/").content
assert hashlib.sha256(data).hexdigest() == "2414c43eae3f72f8a570704f6c54a43814d7590d8515b7ff922d3222bbd96081"
More PPTX files
Other PPTX Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
pptx_sample_file_10MB.pptx |
9.4 MB | 5ccd6ec1de59d310… |
Download |
pptx_sample_file_1MB.pptx |
30.5 KB | 6ad445df41daafe0… |
Download |
pptx_sample_file_500KB.pptx |
28.8 KB | 085feff7c3414f9a… |
Download |
pptx_sample_file_50KB.pptx |
27.2 KB | 2227d7da1874c465… |
Download |
Learn more