GLTF sample file
gltf_sample_file_200KB.gltf
200.0 KB
model/gltf+json
SHA256 verified
File details
Filename
gltf_sample_file_200KB.gltfSize200.0 KB (204800 bytes)
MIME type
model/gltf+jsonExtension
.gltfSHA256
d3f4837ae3cebc7780125bff28f55896db06576be7c8b08309836cf65d422c06Download commands
Use in scripts and tests
curl -L -o gltf_sample_file_200KB.gltf \
https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_200KB.gltf/
wget -O gltf_sample_file_200KB.gltf \
https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_200KB.gltf/
import requests
url = "https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_200KB.gltf/"
resp = requests.get(url)
with open("gltf_sample_file_200KB.gltf", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_200KB.gltf/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("gltf_sample_file_200KB.gltf", buf);
# Download and verify SHA256
curl -L -o gltf_sample_file_200KB.gltf https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_200KB.gltf/
echo "d3f4837ae3cebc7780125bff28f55896db06576be7c8b08309836cf65d422c06 gltf_sample_file_200KB.gltf" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_200KB.gltf/").content
assert hashlib.sha256(data).hexdigest() == "d3f4837ae3cebc7780125bff28f55896db06576be7c8b08309836cf65d422c06"
More GLTF files
Other GLTF Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
gltf_sample_file_1MB.gltf |
1.0 MB | 1371a1c3d681af35… |
Download |
gltf_sample_file_500KB.gltf |
500.0 KB | c44a6f130e0771ee… |
Download |
gltf_sample_file_50KB.gltf |
50.0 KB | 569acd524ee3700a… |
Download |