YAML sample file
yaml_malformed_indentation_sample.yaml
85 B
application/yaml
SHA256 verified
File details
Filename
yaml_malformed_indentation_sample.yamlSize85 B (85 bytes)
MIME type
application/yamlExtension
.yamlSHA256
3403efe21f45a2142a46842bae24b7f8d0ee9171287a2b56e40ba458e18accc8Download commands
Use in scripts and tests
curl -L -o yaml_malformed_indentation_sample.yaml \
https://samplefile.com/samples/download/data/yaml/yaml_malformed_indentation_sample.yaml/
wget -O yaml_malformed_indentation_sample.yaml \
https://samplefile.com/samples/download/data/yaml/yaml_malformed_indentation_sample.yaml/
import requests
url = "https://samplefile.com/samples/download/data/yaml/yaml_malformed_indentation_sample.yaml/"
resp = requests.get(url)
with open("yaml_malformed_indentation_sample.yaml", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/yaml/yaml_malformed_indentation_sample.yaml/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("yaml_malformed_indentation_sample.yaml", buf);
# Download and verify SHA256
curl -L -o yaml_malformed_indentation_sample.yaml https://samplefile.com/samples/download/data/yaml/yaml_malformed_indentation_sample.yaml/
echo "3403efe21f45a2142a46842bae24b7f8d0ee9171287a2b56e40ba458e18accc8 yaml_malformed_indentation_sample.yaml" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/yaml/yaml_malformed_indentation_sample.yaml/").content
assert hashlib.sha256(data).hexdigest() == "3403efe21f45a2142a46842bae24b7f8d0ee9171287a2b56e40ba458e18accc8"
More YAML files
Other YAML Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
yaml_app_config_sample.yaml |
162 B | 0bd2591ec1a912f2… |
Download |
yaml_ci_pipeline_sample.yaml |
212 B | bfdaf915ac0ca128… |
Download |
yaml_kubernetes_manifest_sample.yaml |
339 B | 5e0e2dbf6622cee4… |
Download |
yaml_sample_file_1MB.yaml |
1.0 MB | 9672f6a51e11f605… |
Download |
yaml_sample_file_200KB.yaml |
200.0 KB | aeded2ab091c8807… |
Download |
yaml_sample_file_2MB.yml |
2.0 MB | 5523be77578a0344… |
Download |
Learn more