EDIFACT sample file
edifact_payment_remittance_sample.edifact
262 B
application/octet-stream
SHA256 verified
File details
Filename
edifact_payment_remittance_sample.edifactSize262 B (262 bytes)
MIME type
application/octet-streamExtension
.edifactSHA256
25a684d4ffe2f87e424c18c3a1b1aaacc9e4223e8fd319e7e0d3d73e3d49b8eeDownload commands
Use in scripts and tests
curl -L -o edifact_payment_remittance_sample.edifact \
https://samplefile.com/samples/download/data/edifact/edifact_payment_remittance_sample.edifact/
wget -O edifact_payment_remittance_sample.edifact \
https://samplefile.com/samples/download/data/edifact/edifact_payment_remittance_sample.edifact/
import requests
url = "https://samplefile.com/samples/download/data/edifact/edifact_payment_remittance_sample.edifact/"
resp = requests.get(url)
with open("edifact_payment_remittance_sample.edifact", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/edifact/edifact_payment_remittance_sample.edifact/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("edifact_payment_remittance_sample.edifact", buf);
# Download and verify SHA256
curl -L -o edifact_payment_remittance_sample.edifact https://samplefile.com/samples/download/data/edifact/edifact_payment_remittance_sample.edifact/
echo "25a684d4ffe2f87e424c18c3a1b1aaacc9e4223e8fd319e7e0d3d73e3d49b8ee edifact_payment_remittance_sample.edifact" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/edifact/edifact_payment_remittance_sample.edifact/").content
assert hashlib.sha256(data).hexdigest() == "25a684d4ffe2f87e424c18c3a1b1aaacc9e4223e8fd319e7e0d3d73e3d49b8ee"
More EDIFACT files
Other EDIFACT Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
edifact_invoice_invoic_sample.edifact |
285 B | fce0e3ead5885484… |
Download |
edifact_order_response_sample.edifact |
264 B | 4e39fce388520607… |
Download |