EPUB sample file
epub_sample_file_500KB.epub
6.6 KB
application/epub+zip
SHA256 verified
File details
Filename
epub_sample_file_500KB.epubSize6.6 KB (6723 bytes)
MIME type
application/epub+zipExtension
.epubSHA256
f6a719436861dd7137e062d9baf5bb68f072eaaf58adb4d1bad0f3df051e31a5Download commands
Use in scripts and tests
curl -L -o epub_sample_file_500KB.epub \
https://samplefile.com/samples/download/ebook/epub/epub_sample_file_500KB.epub/
wget -O epub_sample_file_500KB.epub \
https://samplefile.com/samples/download/ebook/epub/epub_sample_file_500KB.epub/
import requests
url = "https://samplefile.com/samples/download/ebook/epub/epub_sample_file_500KB.epub/"
resp = requests.get(url)
with open("epub_sample_file_500KB.epub", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/ebook/epub/epub_sample_file_500KB.epub/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("epub_sample_file_500KB.epub", buf);
# Download and verify SHA256
curl -L -o epub_sample_file_500KB.epub https://samplefile.com/samples/download/ebook/epub/epub_sample_file_500KB.epub/
echo "f6a719436861dd7137e062d9baf5bb68f072eaaf58adb4d1bad0f3df051e31a5 epub_sample_file_500KB.epub" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/ebook/epub/epub_sample_file_500KB.epub/").content
assert hashlib.sha256(data).hexdigest() == "f6a719436861dd7137e062d9baf5bb68f072eaaf58adb4d1bad0f3df051e31a5"
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 | 59917b377126a2ec… |
Download |
epub_sample_file_50KB.epub |
5.0 KB | 1139b37fe2833121… |
Download |
Learn more