PPTX sample file
pptx_sample_file_50KB.pptx
27.2 KB
application/vnd.openxmlformats-officedocument.presentationml.presentation
SHA256 verified
File details
Filename
pptx_sample_file_50KB.pptxSize27.2 KB (27872 bytes)
MIME type
application/vnd.openxmlformats-officedocument.presentationml.presentationExtension
.pptxSHA256
2227d7da1874c465f90112ce5957f8d5e10432198b7cb715b7221a6bef643eccDownload commands
Use in scripts and tests
curl -L -o pptx_sample_file_50KB.pptx \
https://samplefile.com/samples/download/document/pptx/pptx_sample_file_50KB.pptx/
wget -O pptx_sample_file_50KB.pptx \
https://samplefile.com/samples/download/document/pptx/pptx_sample_file_50KB.pptx/
import requests
url = "https://samplefile.com/samples/download/document/pptx/pptx_sample_file_50KB.pptx/"
resp = requests.get(url)
with open("pptx_sample_file_50KB.pptx", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/pptx/pptx_sample_file_50KB.pptx/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("pptx_sample_file_50KB.pptx", buf);
# Download and verify SHA256
curl -L -o pptx_sample_file_50KB.pptx https://samplefile.com/samples/download/document/pptx/pptx_sample_file_50KB.pptx/
echo "2227d7da1874c465f90112ce5957f8d5e10432198b7cb715b7221a6bef643ecc pptx_sample_file_50KB.pptx" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/pptx/pptx_sample_file_50KB.pptx/").content
assert hashlib.sha256(data).hexdigest() == "2227d7da1874c465f90112ce5957f8d5e10432198b7cb715b7221a6bef643ecc"
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_200KB.pptx |
27.7 KB | 2414c43eae3f72f8… |
Download |
pptx_sample_file_500KB.pptx |
28.8 KB | 085feff7c3414f9a… |
Download |
Learn more