File details
Filename
font.otfSize741.9 KB (759720 bytes)
MIME type
font/otfExtension
.otfSHA256
ae7b7855e115a5966d8b1b3f80f254ccc117ec86f9965e202ee2940453837280Download commands
Use in scripts and tests
curl -L -o font.otf \
https://samplefile.com/samples/download/font/otf/font.otf/
wget -O font.otf \
https://samplefile.com/samples/download/font/otf/font.otf/
import requests
url = "https://samplefile.com/samples/download/font/otf/font.otf/"
resp = requests.get(url)
with open("font.otf", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/font/otf/font.otf/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("font.otf", buf);
# Download and verify SHA256
curl -L -o font.otf https://samplefile.com/samples/download/font/otf/font.otf/
echo "ae7b7855e115a5966d8b1b3f80f254ccc117ec86f9965e202ee2940453837280 font.otf" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/font/otf/font.otf/").content
assert hashlib.sha256(data).hexdigest() == "ae7b7855e115a5966d8b1b3f80f254ccc117ec86f9965e202ee2940453837280"