STEP sample file
step_assembly_exchange_sample.step
1.5 KB
model/step
SHA256 verified
File details
Filename
step_assembly_exchange_sample.stepSize1.5 KB (1544 bytes)
MIME type
model/stepExtension
.stepSHA256
b55ca67f8d68350aba7c0079507ac2b63fdcd23fc332b669d76ca3a3812b4b3fDownload commands
Use in scripts and tests
curl -L -o step_assembly_exchange_sample.step \
https://samplefile.com/samples/download/three-d/step/step_assembly_exchange_sample.step/
wget -O step_assembly_exchange_sample.step \
https://samplefile.com/samples/download/three-d/step/step_assembly_exchange_sample.step/
import requests
url = "https://samplefile.com/samples/download/three-d/step/step_assembly_exchange_sample.step/"
resp = requests.get(url)
with open("step_assembly_exchange_sample.step", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/three-d/step/step_assembly_exchange_sample.step/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("step_assembly_exchange_sample.step", buf);
# Download and verify SHA256
curl -L -o step_assembly_exchange_sample.step https://samplefile.com/samples/download/three-d/step/step_assembly_exchange_sample.step/
echo "b55ca67f8d68350aba7c0079507ac2b63fdcd23fc332b669d76ca3a3812b4b3f step_assembly_exchange_sample.step" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/three-d/step/step_assembly_exchange_sample.step/").content
assert hashlib.sha256(data).hexdigest() == "b55ca67f8d68350aba7c0079507ac2b63fdcd23fc332b669d76ca3a3812b4b3f"
More STEP files
Other STEP Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
step_block_part_sample.step |
1.3 KB | 94353b4938d4df40… |
Download |
step_reference_exchange_sample.step |
517 B | 2f4d41778d1e464b… |
Download |