EPUB sample file
epub_sample_file_50KB.epub
5.0 KB
application/epub+zip
SHA256 verified
File details
Filename
epub_sample_file_50KB.epubSize5.0 KB (5144 bytes)
MIME type
application/epub+zipExtension
.epubSHA256
2ce40da8598f344260e19302683cf2447aa6168c82e37484b0ad02cc4c85804cDownload commands
Use in scripts and tests
curl -L -o epub_sample_file_50KB.epub \
https://samplefile.com/samples/download/document/epub/epub_sample_file_50KB.epub/
wget -O epub_sample_file_50KB.epub \
https://samplefile.com/samples/download/document/epub/epub_sample_file_50KB.epub/
import requests
url = "https://samplefile.com/samples/download/document/epub/epub_sample_file_50KB.epub/"
resp = requests.get(url)
with open("epub_sample_file_50KB.epub", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/epub/epub_sample_file_50KB.epub/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("epub_sample_file_50KB.epub", buf);
# Download and verify SHA256
curl -L -o epub_sample_file_50KB.epub https://samplefile.com/samples/download/document/epub/epub_sample_file_50KB.epub/
echo "2ce40da8598f344260e19302683cf2447aa6168c82e37484b0ad02cc4c85804c epub_sample_file_50KB.epub" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/epub/epub_sample_file_50KB.epub/").content
assert hashlib.sha256(data).hexdigest() == "2ce40da8598f344260e19302683cf2447aa6168c82e37484b0ad02cc4c85804c"
More EPUB files
Other EPUB Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
epub_sample_file_1MB.epub |
8.3 KB | ef4f272062cdf1a6… |
Download |
epub_sample_file_200KB.epub |
5.5 KB | c6206e51207651ff… |
Download |
epub_sample_file_500KB.epub |
6.6 KB | f6a719436861dd71… |
Download |
Learn more