Skip to main content

FinLang: a deterministic, auditable DSL for financial rules

Project description

FinLang — The Financial Rules Engine

Deterministic. Auditable. Global.
Compliant with the EU AI Act (effective August 2026).

PyPI version License: AGPL v3 Build Status Python versions


🌍 Overview

FinLang is a domain-specific language (DSL) and high-performance CLI engine for financial transaction processing.
It replaces opaque machine-learning categorization with transparent, deterministic rules — delivering explainability, auditability, and global compatibility.

Built for compliance.
Designed to meet the EU AI Act “high-risk AI” obligations — deterministic, explainable, and fully auditable.


📝 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.6.4)

Feature Description
Deterministic DSL Human-readable .fin rules language — explainable logic, Git-friendly.
High-Performance Engine Vectorized core (Pandas + NumPy + PyArrow) — 24K+ rows/sec validated throughput.
Growth Loop Automated Discover → Suggest → Categorize workflow — 97.8% success on addressable patterns.
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.
CR/DR Semantics Case-insensitive CR/DR, accounting negatives (123.45), trailing minus 123.45-.
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.

📦 Installation

Requirements: Python 3.10 or later

From PyPI (Recommended):

pip install finlang

With Fast I/O (PyArrow):

pip install "finlang[fastio]"

(Enables --fastio for accelerated CSV I/O.)

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.6.4 Validated)

Measured with --audit-mode none (max throughput).

Dataset Rules Time (s) Rows/sec Notes
100 K (UK Synthetic) 121 2.54 39 370 ✅ Baseline
100 K (after Growth Loop) 764 4.96 20 161 ✅ +6.3× rules → ≈ 2× slower
5M × 50 cols 208.31 24 003 ✅ High volume validation

Audit Overhead: Enabling --audit-mode lite/full reduces throughput by ≈ 38% due to diff calculation; provides full decision provenance.
See docs/benchmarks.md for 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% success on addressable patterns
  • ROI: 8.8 transactions categorized per new rule

📄 See: docs/growth_loop_best_practices.md


🧾 Known Limitations (v0.6.4)

  • ⚠️ --emit-match fuzzy (default) uses naive tokenization and may produce broad patterns (e.g. *PLC*).
    → Use --emit-match exact for production workflows (improvements planned for v0.6.5).
  • ⚠️ Hyphenated/apostrophe names may affect fuzzy matching (< 1% impact).
  • ⚠️ No support for non-Gregorian calendars or non-Western numerals.

📘 Documentation

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 Status
Core Engine v0.6.4 ✅ Production-Ready
CLI Suite v0.6.4 ✅ Validated
Discover/Suggest v0.6.4 ✅ 97.8% accuracy
Docs v0.6.4 ✅ Complete
Next Milestone v0.6.5 🚧 Fuzzy tokenizer & audit optimization

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

finlang-0.7.2.tar.gz (58.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

finlang-0.7.2-py3-none-any.whl (62.6 kB view details)

Uploaded Python 3

File details

Details for the file finlang-0.7.2.tar.gz.

File metadata

  • Download URL: finlang-0.7.2.tar.gz
  • Upload date:
  • Size: 58.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for finlang-0.7.2.tar.gz
Algorithm Hash digest
SHA256 00c255d730f4b5e18ee1f6d29cf475d108b39401359488338043aa3c1d4f3aff
MD5 55e6951f5753bf106f91051dbffcb5a3
BLAKE2b-256 cf61c0ce20f477d082dde316d8b14e426183b2dd0607d751dd9350824f64f044

See more details on using hashes here.

File details

Details for the file finlang-0.7.2-py3-none-any.whl.

File metadata

  • Download URL: finlang-0.7.2-py3-none-any.whl
  • Upload date:
  • Size: 62.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for finlang-0.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 93f331efb1d98af6ba97e2f0e2cc30a1ce4e13cafad8c0d3b1d6f75b9fb4d111
MD5 b1eccedcbb7b65308e8e379dd97b8c5d
BLAKE2b-256 4045e49aa487d2b9e7704d50b6d2f29d850318c2c05f5ce52672fc5fc8e1f633

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page