VCF sample file
vcf_single_contact_sample.vcf
241 B
text/vcard
SHA256 verified
File details
Filename
vcf_single_contact_sample.vcfSize241 B (241 bytes)
MIME type
text/vcardExtension
.vcfSHA256
27137dc6a3cc5ba167e91ce8017880ade3ecf485b3b955c10e2b6c493d9f8e1aDownload commands
Use in scripts and tests
curl -L -o vcf_single_contact_sample.vcf \
https://samplefile.com/samples/download/document/vcf/vcf_single_contact_sample.vcf/
wget -O vcf_single_contact_sample.vcf \
https://samplefile.com/samples/download/document/vcf/vcf_single_contact_sample.vcf/
import requests
url = "https://samplefile.com/samples/download/document/vcf/vcf_single_contact_sample.vcf/"
resp = requests.get(url)
with open("vcf_single_contact_sample.vcf", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/vcf/vcf_single_contact_sample.vcf/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("vcf_single_contact_sample.vcf", buf);
# Download and verify SHA256
curl -L -o vcf_single_contact_sample.vcf https://samplefile.com/samples/download/document/vcf/vcf_single_contact_sample.vcf/
echo "27137dc6a3cc5ba167e91ce8017880ade3ecf485b3b955c10e2b6c493d9f8e1a vcf_single_contact_sample.vcf" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/vcf/vcf_single_contact_sample.vcf/").content
assert hashlib.sha256(data).hexdigest() == "27137dc6a3cc5ba167e91ce8017880ade3ecf485b3b955c10e2b6c493d9f8e1a"
More VCF files
Other VCF Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
vcf_team_directory_sample.vcf |
299 B | e7242eb416233c28… |
Download |
vcf_unicode_contact_sample.vcf |
220 B | 30f9ef159795e3fa… |
Download |
Learn more