Fichiers d'echantillon QIF
Quicken Interchange Format (.qif) files store account registers, split transactions, categories, and payee data in a plain-text financial export format. Despite its age, QIF still appears in legacy accounting and personal-finance imports. Use sample .qif files to test ledger imports, category mapping, split-transaction parsing, and compatibility with older bookkeeping or reconciliation systems.
QIF Sample Files — Download
Starter file
TelechargerChecking Register QIF
Telecharger le fixtureCredit Card Register QIF
Telecharger le fixture| Nom du fichier | Taille | MIME | Telecharger |
|---|---|---|---|
| 256 B | application/octet-stream |
Telecharger
|
|
| 224 B | application/octet-stream |
Telecharger
|
|
| 136 B | application/octet-stream |
Telecharger
|
QIF Testing Workflows
Upload Testing
Ouvrir le format QIFParser Regression
Ouvrir le format QIFQA Automation
Ouvrir le format QIFQIF Format Comparisons
QIF File FAQ
Verification du checksum
Utilisez les checksums pour confirmer l'integrite du fichier apres telechargement.
shasum -a 256 your_file_name_here
# Compare output with SHA256 values listed above.
Where is the machine-readable manifest?
Use the manifest when you need stable names, SHA256 values, and URLs for automation.
Use in code — curl, Python, Node, wget
Copy any snippet directly into scripts, test suites, or CI pipelines. All URLs are stable and publicly accessible with no auth required.
# Download qif_checking_register_sample.qif
curl -L -o qif_checking_register_sample.qif \
https://samplefile.com/samples/download/data/qif/qif_checking_register_sample.qif/
# Or fetch a random QIF file
curl -s "https://samplefile.com/samples/api/random?format=qif" | jq -r '.download_url'
# Download qif_checking_register_sample.qif
wget -O qif_checking_register_sample.qif \
https://samplefile.com/samples/download/data/qif/qif_checking_register_sample.qif/
import requests
# Download a specific file
url = "https://samplefile.com/samples/download/data/qif/qif_checking_register_sample.qif/"
resp = requests.get(url)
with open("qif_checking_register_sample.qif", "wb") as f:
f.write(resp.content)
# Or fetch a random QIF file via API
meta = requests.get("https://samplefile.com/samples/api/random?format=qif").json()
resp = requests.get(meta["download_url"])
with open(meta["name"], "wb") as f:
f.write(resp.content)
// Download a specific file
const fs = require("fs");
const https = require("https");
const url = "https://samplefile.com/samples/download/data/qif/qif_checking_register_sample.qif/";
https.get(url, (res) => {
res.pipe(fs.createWriteStream("qif_checking_register_sample.qif"));
});
// Or fetch a random QIF via the API
const meta = await fetch("https://samplefile.com/samples/api/random?format=qif").then(r => r.json());
const file = await fetch(meta.download_url);
// use file.arrayBuffer(), file.body, etc.
# Random QIF file (JSON response)
GET https://samplefile.com/samples/api/random?format=qif
# All QIF files
GET https://samplefile.com/samples/api/files?format=qif
# Manifest with SHA256 checksums
GET https://samplefile.com/samples/data/qif/manifest.json
# Response includes: name, size_bytes, mime_type, sha256, download_url
Methodologie de validation
- Validate extension and MIME detection before processing.
- Benchmark performance with small and larger files.
- Test malformed-input handling and error messaging.
Utilisez la matrice QIF pour choisir les bons fixtures propres, limites et casses pour ce format.
Ouvrir la matrice