FinLang: a deterministic, auditable DSL for financial rules
Project description
FinLang โ The Financial Rules Engine
Deterministic. Auditable. Global.
Designed for explainable processing in regulated environments.
๐ Overview
FinLang is a domain-specific language (DSL) and vectorised CLI engine for financial transaction processing.
It replaces opaque machine-learning categorization with transparent, deterministic rules โ delivering explainability, auditability, and global compatibility.
Built for audit-friendly logic and deterministic processing.
A deterministic alternative where explainability and reproducibility matter.
What this is for
FinLang is a deterministic rules engine for financial transaction categorisation.
It is especially useful as a challenge layer alongside ML categorisers: the --reconcile workflow compares FinLang's rule-attributed output against an external classification, row by row.
Same input + same rules = reproducible output, with rule-attributed audit trails.
The v0.7.9 FastAPI wrapper makes the same engine reachable over a self-hosted HTTP surface for service/integration workflows.
Three surfaces. One engine:
- CLI for batch processing
- Python workflows via subprocess-isolated CLI execution
- Self-hosted HTTP wrapper via
finlang-api
๐ The FinLang DSL
FinLang rules are human-readable, Git-friendly, and designed for precision.
The engine processes rules top-to-bottom; the last matching rule sets the category, while flags accumulate.
# Example: Basic categorization and flagging
rule "GROCERIES: Tesco" {
match:
- counterparty ~ "*TESCO*"
set:
- category = "Groceries"
- flags += "Supermarket"
}
# Example: Numeric range and exact match
rule "TRAVEL: High Value Flight" {
match:
- counterparty == "BRITISH AIRWAYS"
- amount in -5000.00 .. -500.00
set:
- category = "Travel"
- flags += "HighValue"
}
โ๏ธ Key Features (v0.8.0)
| Feature | Description |
|---|---|
| Deterministic DSL | Human-readable .fin rules language โ explainable logic, Git-friendly. |
| Vectorised Engine | Vectorised core (Pandas + NumPy + PyArrow) โ ~217K rows/sec FastIO validated throughput on the integrity harness (20M ร 6 cols). |
| Dual Backend | Standard (Engine: c) or FastIO (Engine: pyarrow) with automatic fallback. |
| Growth Loop | Automated Discover โ Suggest โ Categorize workflow โ 97.8% average coverage gain across 5 validation runs (source). |
| Global I18n Support | US/UK/EU/Commonwealth formats, ยฃ โฌ $ ยฅ โน stripping, localized decimals/dates/delimiters. |
| Audit Trail System | Every decision logged (before/after state diffs); stateless for reproducibility. |
| Exclude Marker | Boolean exclude column โ rule-driven, auditable, supports blacklist/whitelist exception patterns. |
| CR/DR Semantics | Case-insensitive CR/DR (with or without space), accounting negatives (123.45), trailing minus 123.45-. v0.7.7 fixes a latent bug on no-space CR/DR formats. |
| Amount Synthesis | Auto-computes amount = abs(credit) โ abs(debit) across 9 edge cases. |
| Strict Parsing | Locale-aware normalization with configurable thresholds (--strict-parse). |
| Flag Integrity | Append-only (flags +=) with deterministic deduplication. |
| Integrity Verification | Built-in --verify and --verify-full โ SHA-256 fingerprinting of immutable fields with optional artifact output. See docs/verify.md. |
| ML Reconciliation (v0.7.8) | --reconcile produces a row-by-row mismatch report against an external (typically ML) categorisation, with rule attribution and audit reason. Optional self-contained HTML report via --reconcile-html. See docs/reconciliation.md. |
| FastAPI Wrapper (v0.7.9) | pip install finlang[api] adds a self-hosted HTTP surface (finlang-api) over the same CLI engine โ seven endpoints incl. /process, /reconcile, /impact, /discover, /suggest. Subprocess-dispatched (no second engine surface). 24 standalone integration tests + CLI/API parity contract test. See docs/api.md. |
๐ฆ Installation
Requirements: Python 3.10โ3.14
From PyPI (Recommended):
pip install finlang
With Fast I/O (PyArrow):
pip install "finlang[fastio]"
(Enables --fastio for accelerated CSV I/O.)
With HTTP API wrapper:
pip install "finlang[api]"
finlang-api # binds 127.0.0.1:8000 โ interactive docs at /docs
(Thin FastAPI wrapper over the CLI for HTTP-based integration and demos. See docs/api.md.)
From Source (Development):
git clone https://github.com/FinLang-Ltd/finlang.git
cd finlang
pip install -e .[fastio]
๐ Quick Start โ The 5-Step Growth Loop
1๏ธโฃ Initial Categorization
finlang --input transactions.csv --output baseline.csv \
--rules my_rules.fin --include-pack retail,transport
2๏ธโฃ Discover Gaps
finlang-discover --input baseline.csv \
--candidates candidates.csv --all-candidates all_candidates.csv \
--min-count 5
3๏ธโฃ Suggest Rules (Exact Mode Recommended)
finlang-suggest --input candidates.csv --output suggested_rules.fin \
--rules my_rules.fin --emit-match exact
4๏ธโฃ Merge and Re-run
cat my_rules.fin suggested_rules.fin > merged.fin
finlang --input transactions.csv --output improved.csv \
--rules merged.fin --include-pack retail,transport
โ
Expected Result: 5โ10% coverage improvement; zero duplicates in exact mode.
๐ Performance Benchmarks (v0.7.7)
Measured with --audit-mode none (max throughput) on Intel i7-12700T, 48GB RAM, Windows 11, Python 3.13.7, PyArrow 21.0.
| Dataset | Test | Time (s) | Rows/sec | Notes |
|---|---|---|---|---|
| 100K (UK Synthetic) | Growth Loop | 2.54 | 39,370 โ | Baseline (121 rules) |
| 100K (after Growth Loop) | Growth Loop | 4.96 | 20,161 โ | +6.3ร rules โ โ 2ร slower (764 rules) |
| 5M ร 50 cols | Benchmark Harness | 179.27 | 27,900 โ | Enterprise validation, 3-run average |
| 20M ร 6 cols | Integrity Test (FastIO) | ~90 | 217,068 โ | Engine throughput, full SHA-256 verified |
v0.7.7 improvement: Hot-path bug fix in
_to_numberremoved an unnecessary\bword boundary that was both producing wrong results on no-space CR/DR formats AND costing measurable runtime. The fix delivered +30-50% throughput on the integrity harness vs v0.7.6, taking standard mode to ~180K rows/sec and FastIO to ~217K rows/sec.Cumulative v0.6.4 โ v0.7.7: -14% runtime, +16% throughput on the enterprise harness (5M ร 50).
Audit Overhead: Enabling
--audit-mode lite/fullreduces throughput by โ38% due to diff calculation; provides full decision provenance.Note: These figures are validated benchmark results from controlled tests. Actual performance varies depending on dataset, ruleset, and audit mode.
Seedocs/benchmarks.mdfor full details.
๐ Integrity Verification (v0.7.7+)
SHA-256 fingerprint verification benchmarked on large datasets:
| Rows | Engine (Standard) | Engine (FastIO) | Result |
|---|---|---|---|
| 5M | 178,903 rows/s | 198,448 rows/s | โ All fingerprints match |
| 10M | 178,511 rows/s | 214,136 rows/s | โ All fingerprints match |
| 20M | 181,566 rows/s | 217,068 rows/s | โ All fingerprints match |
What this benchmark validated: Every row's immutable fields (
date,amount,counterparty) were verified via SHA-256 hash before and after engine processing. Zero cross-row contamination detected. Zero data corruption detected. 60M rows verified field-by-field across three runs, zero mismatches.Note: As of v0.7.7, SHA-256 integrity verification is available as a CLI feature via
--verify(fast fingerprint) and--verify-full(fingerprint + field comparison). Use--verify-output-dirto save audit artifacts (JSON report + proof CSV). Seedocs/cli_reference.mdfor details.
๐ Internationalization Matrix
| Region | Example Number | Date Order | CLI Flags |
|---|---|---|---|
| ๐บ๐ธ US / ๐จ๐ฆ Canada | 1,234.56 | MM/DD | (defaults) |
| ๐ฌ๐ง UK / ๐ฆ๐บ Commonwealth | 1,234.56 | DD/MM | --dayfirst |
| ๐ช๐บ Continental Europe | 1.234,56 | DD/MM | --decimal "," --thousands "." --dayfirst |
| ๐จ๐ญ Switzerland | 1'234.56 | DD/MM | --thousands "'" --dayfirst |
Auto-Detection and Normalization: BOM-safe UTF-8 encodings, , ; | \t delimiters, and automatic currency symbol stripping.
๐ง The Growth Loop Explained
Discover โ Suggest โ Categorize โ Repeat
FinLang's Growth Loop accelerates rule creation through data-driven discovery.
- Discover uncategorized counterparties
- Suggest new rules in seconds (1:1 mapping in exact mode)
- Merge + Re-run for incremental coverage gains
- Validated Result: 97.8% average coverage gain across 5 runs (source)
๐ See: docs/growth_loop_best_practices.md
๐งพ Known Limitations (v0.7.x)
- โ ๏ธ
--emit-match fuzzy(default) filters corporate stopwords (LTD, LLC, PLC, INC, GROUP, COMPANY, CO, SAS, GMBH, CORP) and deduplicates patterns within a batch (v0.7.7). Edge cases with very short counterparty names may still produce broad patterns. โ Use--emit-match exactfor production workflows. - โ ๏ธ Hyphenated/apostrophe names may affect fuzzy matching (< 1% impact).
- โ ๏ธ No support for non-Gregorian calendars or non-Western numerals.
๐ Documentation
docs/release_notes/v0_7_9.mdโ FastAPI wrapper (finlang-api), three surfaces / one enginedocs/release_notes/v0_7_8.mddocs/release_notes/v0_7_7.mddocs/release_notes/v0_7_6.mddocs/reconciliation.mdโ--reconcileML validation layer (v0.7.8)docs/verify.mdโ--verifyintegrity verificationdocs/api.mdโ FastAPI wrapper (pip install finlang[api],finlang-api)docs/api_reference.mdโ full API endpoint referencedocs/runtime_contract.mddocs/cli_reference.mddocs/rulepacks.mddocs/benchmarks.mddocs/growth_loop_best_practices.mddocs/amount_synthesis.mddocs/i18n_examples.mddocs/stateless_processing.md
Command-line help:
finlang --help
finlang-discover --help
finlang-suggest --help
๐งฉ Example CLI Usage
finlang --input bank.csv --output categorized.csv \
--rules examples/rules.demo.fin \
--include-pack retail,transport,subs \
--fastio --audit audit_log.json --audit-mode lite
๐ License & Commercial Use
FinLang is open source under the GNU Affero General Public License (AGPL-3.0).
Commercial licenses and enterprise support are available via FinLang Ltd.
๐ง info@finlang.io
๐ https://finlang.io
Contributing
Contributions are welcome! Before submitting a PR, please review and accept our Contributor Licence Agreement (CLA).
๐ Version Summary
| Component | Version | Validation |
|---|---|---|
| Core Engine | v0.8.0 | Output-identical to v0.7.9 (additive audit_max param; default path unchanged) |
| CLI Suite | v0.8.0 | 168 tests across 10 gates (daily); 7-gate full pre-release suite |
| FastAPI Wrapper | v0.8.0 | 24 standalone integration tests + CLI/API parity contract test |
| Discover/Suggest | v0.8.0 | 97.8% average coverage gain across 5 validation runs |
| Integrity Test | v0.8.0 | 20M rows verified field-by-field, ~217K rows/sec FastIO on the integrity harness |
| Verify | v0.8.0 | --verify / --verify-full (SHA-256 fingerprint + field comparison) |
| Reconcile | v0.8.0 | --reconcile / --reconcile-html (row-by-row mismatch + audit reason) |
| Cleanroom | v0.8.0 | 5-gate disposable-venv PyPI validation (incl. API surface) |
| CI | v0.8.0 | GitHub Actions matrix: Python 3.10 / 3.11 / 3.12 / 3.13 / 3.14 |
| Docs | v0.8.0 | Coverage across CLI, rule language, API, reconcile, verify, i18n, growth loop |
| Python Support | 3.10โ3.14 | Tested across all five versions via CI matrix |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file finlang-0.8.0.tar.gz.
File metadata
- Download URL: finlang-0.8.0.tar.gz
- Upload date:
- Size: 101.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9135cba22e9763107d73b00930d1f822bf162268f3f54b5a5081ba0ace8703c
|
|
| MD5 |
a1c16b3ffdcd55bb9d4a8ff9f324b28b
|
|
| BLAKE2b-256 |
10ae4e1c76ba72e6b7d5c86aa900d08618c08c78b0e4dc5751880ee1528cae1b
|
File details
Details for the file finlang-0.8.0-py3-none-any.whl.
File metadata
- Download URL: finlang-0.8.0-py3-none-any.whl
- Upload date:
- Size: 106.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56bc434f04d62ef86932fe7b3f4bf27839d9d1c267ec3ce4593e6784101680b2
|
|
| MD5 |
3bf9022b36d5a2e713ead2146c947348
|
|
| BLAKE2b-256 |
6943101f273089fd6efb3c8aaf0f284d025d1199147a246bccbfd5ff42747376
|