DXF sample file
dxf_r12_exchange_sample.dxf
6.6 KB
image/vnd.dxf
SHA256 verified
File details
Filename
dxf_r12_exchange_sample.dxfSize6.6 KB (6766 bytes)
MIME type
image/vnd.dxfExtension
.dxfSHA256
b476d3e53fe24c1db3c701d20b2bebd774f7bd7966b12d81891505b9b29e4d21Download commands
Use in scripts and tests
curl -L -o dxf_r12_exchange_sample.dxf \
https://samplefile.com/samples/download/three-d/dxf/dxf_r12_exchange_sample.dxf/
wget -O dxf_r12_exchange_sample.dxf \
https://samplefile.com/samples/download/three-d/dxf/dxf_r12_exchange_sample.dxf/
import requests
url = "https://samplefile.com/samples/download/three-d/dxf/dxf_r12_exchange_sample.dxf/"
resp = requests.get(url)
with open("dxf_r12_exchange_sample.dxf", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/three-d/dxf/dxf_r12_exchange_sample.dxf/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("dxf_r12_exchange_sample.dxf", buf);
# Download and verify SHA256
curl -L -o dxf_r12_exchange_sample.dxf https://samplefile.com/samples/download/three-d/dxf/dxf_r12_exchange_sample.dxf/
echo "b476d3e53fe24c1db3c701d20b2bebd774f7bd7966b12d81891505b9b29e4d21 dxf_r12_exchange_sample.dxf" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/three-d/dxf/dxf_r12_exchange_sample.dxf/").content
assert hashlib.sha256(data).hexdigest() == "b476d3e53fe24c1db3c701d20b2bebd774f7bd7966b12d81891505b9b29e4d21"
More DXF files
Other DXF Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
dxf_floorplan_outline_sample.dxf |
302 B | 5f670530410cbf53… |
Download |
dxf_mechanical_bracket_sample.dxf |
397 B | 21566be078310e27… |
Download |