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 (5143 bytes)
MIME type
application/epub+zipExtension
.epubSHA256
1139b37fe283312104f89bfe2468c309da687de4962e34e641c57ce35f716b84Download commands
Use in scripts and tests
curl -L -o epub_sample_file_50KB.epub \
https://samplefile.com/samples/download/ebook/epub/epub_sample_file_50KB.epub/
wget -O epub_sample_file_50KB.epub \
https://samplefile.com/samples/download/ebook/epub/epub_sample_file_50KB.epub/
import requests
url = "https://samplefile.com/samples/download/ebook/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/ebook/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/ebook/epub/epub_sample_file_50KB.epub/
echo "1139b37fe283312104f89bfe2468c309da687de4962e34e641c57ce35f716b84 epub_sample_file_50KB.epub" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/ebook/epub/epub_sample_file_50KB.epub/").content
assert hashlib.sha256(data).hexdigest() == "1139b37fe283312104f89bfe2468c309da687de4962e34e641c57ce35f716b84"
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_500KB.epub |
6.6 KB | f6a719436861dd71… |
Download |
Learn more