TOML sample file
toml_sample_file_50KB.toml
50.0 KB
application/octet-stream
SHA256 verified
File details
Filename
toml_sample_file_50KB.tomlSize50.0 KB (51200 bytes)
MIME type
application/octet-streamExtension
.tomlSHA256
00712daef70d9d64e8cded942ac8e56742d9c107963da6e5678519a36c3132a6Download commands
Use in scripts and tests
curl -L -o toml_sample_file_50KB.toml \
https://samplefile.com/samples/download/data/toml/toml_sample_file_50KB.toml/
wget -O toml_sample_file_50KB.toml \
https://samplefile.com/samples/download/data/toml/toml_sample_file_50KB.toml/
import requests
url = "https://samplefile.com/samples/download/data/toml/toml_sample_file_50KB.toml/"
resp = requests.get(url)
with open("toml_sample_file_50KB.toml", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/toml/toml_sample_file_50KB.toml/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("toml_sample_file_50KB.toml", buf);
# Download and verify SHA256
curl -L -o toml_sample_file_50KB.toml https://samplefile.com/samples/download/data/toml/toml_sample_file_50KB.toml/
echo "00712daef70d9d64e8cded942ac8e56742d9c107963da6e5678519a36c3132a6 toml_sample_file_50KB.toml" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/toml/toml_sample_file_50KB.toml/").content
assert hashlib.sha256(data).hexdigest() == "00712daef70d9d64e8cded942ac8e56742d9c107963da6e5678519a36c3132a6"
More TOML files
Other TOML Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
toml_app_settings_sample.toml |
139 B | fb6d3d6fb8c009ca… |
Download |
toml_invalid_array_sample.toml |
99 B | 552e44cfc9b3701c… |
Download |
toml_pyproject_style_sample.toml |
224 B | 4823ceccee379e95… |
Download |
toml_sample_file_1MB.toml |
1.0 MB | cb449b4c396693f4… |
Download |
toml_sample_file_200KB.toml |
200.0 KB | a8059fd132cf4d39… |
Download |
toml_sample_file_2MB.toml |
2.0 MB | 01073f7c53037713… |
Download |
Learn more