NDJSON sample file
ndjson_sample_file_200KB.ndjson
200.0 KB
application/octet-stream
SHA256 verified
File details
Filename
ndjson_sample_file_200KB.ndjsonSize200.0 KB (204800 bytes)
MIME type
application/octet-streamExtension
.ndjsonSHA256
39bab07e17291e23a70858aaf28e1ca7d5d024c6a03d4ddf8dc535d553d630fcDownload commands
Use in scripts and tests
curl -L -o ndjson_sample_file_200KB.ndjson \
https://samplefile.com/samples/download/data/ndjson/ndjson_sample_file_200KB.ndjson/
wget -O ndjson_sample_file_200KB.ndjson \
https://samplefile.com/samples/download/data/ndjson/ndjson_sample_file_200KB.ndjson/
import requests
url = "https://samplefile.com/samples/download/data/ndjson/ndjson_sample_file_200KB.ndjson/"
resp = requests.get(url)
with open("ndjson_sample_file_200KB.ndjson", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/ndjson/ndjson_sample_file_200KB.ndjson/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("ndjson_sample_file_200KB.ndjson", buf);
# Download and verify SHA256
curl -L -o ndjson_sample_file_200KB.ndjson https://samplefile.com/samples/download/data/ndjson/ndjson_sample_file_200KB.ndjson/
echo "39bab07e17291e23a70858aaf28e1ca7d5d024c6a03d4ddf8dc535d553d630fc ndjson_sample_file_200KB.ndjson" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/ndjson/ndjson_sample_file_200KB.ndjson/").content
assert hashlib.sha256(data).hexdigest() == "39bab07e17291e23a70858aaf28e1ca7d5d024c6a03d4ddf8dc535d553d630fc"
More NDJSON files
Other NDJSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
ndjson_api_activity_stream_sample.ndjson |
313 B | 27962b74e241d8a2… |
Download |
ndjson_malformed_event_stream_sample.ndjson |
230 B | b9a4f27ae434a65d… |
Download |
ndjson_sample_file_1MB.ndjson |
1.0 MB | e3d7a3a534037c6b… |
Download |
ndjson_sample_file_2MB.ndjson |
2.0 MB | a9408f51eb494032… |
Download |
ndjson_sample_file_500KB.ndjson |
500.0 KB | 896c3c8d042a6c58… |
Download |
ndjson_sample_file_50KB.ndjson |
50.0 KB | 03528f9db5187962… |
Download |