Problem
Bank of Baroda is one of India's largest public sector banks but FreeFile doesn't support parsing their statements yet.
Proposed Solution
Create a new parser at backend/parsers/bob.py that can handle Bank of Baroda PDF and CSV statements.
How to contribute
- Look at existing parsers in
backend/parsers/ (e.g., hdfc.py, sbi.py) for the pattern
- Your parser should return a list of transaction dicts with:
date, description, amount, type ("credit"/"debit"), balance
- Register the parser in the upload route
- Add test cases with a sample statement
See CONTRIBUTING.md for the full guide.
Problem
Bank of Baroda is one of India's largest public sector banks but FreeFile doesn't support parsing their statements yet.
Proposed Solution
Create a new parser at
backend/parsers/bob.pythat can handle Bank of Baroda PDF and CSV statements.How to contribute
backend/parsers/(e.g.,hdfc.py,sbi.py) for the patterndate,description,amount,type("credit"/"debit"),balanceSee CONTRIBUTING.md for the full guide.