TSV sample file
tsv_customer_export_sample.tsv
197 B
text/tab-separated-values
SHA256 verified
File details
Filename
tsv_customer_export_sample.tsvSize197 B (197 bytes)
MIME type
text/tab-separated-valuesExtension
.tsvSHA256
2c05e867766df17fd476610e4d7e5b2689317ef6d07c3faa0939e7cad367b340Download commands
Use in scripts and tests
curl -L -o tsv_customer_export_sample.tsv \
https://samplefile.com/samples/download/document/tsv/tsv_customer_export_sample.tsv/
wget -O tsv_customer_export_sample.tsv \
https://samplefile.com/samples/download/document/tsv/tsv_customer_export_sample.tsv/
import requests
url = "https://samplefile.com/samples/download/document/tsv/tsv_customer_export_sample.tsv/"
resp = requests.get(url)
with open("tsv_customer_export_sample.tsv", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/tsv/tsv_customer_export_sample.tsv/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("tsv_customer_export_sample.tsv", buf);
# Download and verify SHA256
curl -L -o tsv_customer_export_sample.tsv https://samplefile.com/samples/download/document/tsv/tsv_customer_export_sample.tsv/
echo "2c05e867766df17fd476610e4d7e5b2689317ef6d07c3faa0939e7cad367b340 tsv_customer_export_sample.tsv" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/tsv/tsv_customer_export_sample.tsv/").content
assert hashlib.sha256(data).hexdigest() == "2c05e867766df17fd476610e4d7e5b2689317ef6d07c3faa0939e7cad367b340"
More TSV files
Other TSV Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
tsv_audit_log_review_sample.tsv |
311 B | 264b327882275c16… |
Download |
tsv_contact_directory_sample.tsv |
203 B | bc20dc1eba3831a4… |
Download |
tsv_sample_file_1MB.tsv |
1.0 MB | 9324ed24aafb92bd… |
Download |
tsv_sample_file_200KB.tsv |
200.0 KB | 5fed28a7d09fca77… |
Download |
tsv_sample_file_2MB.tsv |
2.0 MB | 5211a855dca4df48… |
Download |
tsv_sample_file_500KB.tsv |
500.0 KB | b67fd9b71c9e91c3… |
Download |
Learn more