JSONL sample file
jsonl_sample_file_500KB.jsonl
500.0 KB
application/octet-stream
SHA256 verified
File details
Filename
jsonl_sample_file_500KB.jsonlSize500.0 KB (512000 bytes)
MIME type
application/octet-streamExtension
.jsonlSHA256
f4d6fbd32df130119f3d7c6a963cf1dc51ef71a9194662dce30e42c137a9053fDownload commands
Use in scripts and tests
curl -L -o jsonl_sample_file_500KB.jsonl \
https://samplefile.com/samples/download/data/jsonl/jsonl_sample_file_500KB.jsonl/
wget -O jsonl_sample_file_500KB.jsonl \
https://samplefile.com/samples/download/data/jsonl/jsonl_sample_file_500KB.jsonl/
import requests
url = "https://samplefile.com/samples/download/data/jsonl/jsonl_sample_file_500KB.jsonl/"
resp = requests.get(url)
with open("jsonl_sample_file_500KB.jsonl", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/jsonl/jsonl_sample_file_500KB.jsonl/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("jsonl_sample_file_500KB.jsonl", buf);
# Download and verify SHA256
curl -L -o jsonl_sample_file_500KB.jsonl https://samplefile.com/samples/download/data/jsonl/jsonl_sample_file_500KB.jsonl/
echo "f4d6fbd32df130119f3d7c6a963cf1dc51ef71a9194662dce30e42c137a9053f jsonl_sample_file_500KB.jsonl" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/jsonl/jsonl_sample_file_500KB.jsonl/").content
assert hashlib.sha256(data).hexdigest() == "f4d6fbd32df130119f3d7c6a963cf1dc51ef71a9194662dce30e42c137a9053f"
More JSONL files
Other JSONL Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
jsonl_cdc_changefeed_sample.jsonl |
363 B | 4490f665dea516d0… |
Download |
jsonl_order_events_stream_sample.jsonl |
412 B | 02065c321eb5aa3f… |
Download |
jsonl_sample_file_1MB.jsonl |
1.0 MB | dcf2afe9a340f1a5… |
Download |
jsonl_sample_file_200KB.jsonl |
200.0 KB | 3a35e93b5843e16d… |
Download |
jsonl_sample_file_2MB.jsonl |
2.0 MB | a9408f51eb494032… |
Download |
jsonl_sample_file_50KB.jsonl |
50.0 KB | 9a36d76a933c3ba1… |
Download |
Learn more