https://github.com/psibi/hdfc-cc-parser
HDFC Infinia CC Parser
https://github.com/psibi/hdfc-cc-parser
credit-card hdfc infinia
Last synced: about 1 month ago
JSON representation
HDFC Infinia CC Parser
- Host: GitHub
- URL: https://github.com/psibi/hdfc-cc-parser
- Owner: psibi
- Created: 2026-06-13T03:04:52.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-13T03:20:31.000Z (about 1 month ago)
- Last Synced: 2026-06-13T05:11:30.733Z (about 1 month ago)
- Topics: credit-card, hdfc, infinia
- Language: Rust
- Homepage: http://psibi.in/hdfc-cc-parser/
- Size: 390 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HDFC CC Parser
Parse HDFC Bank credit card PDF statements into CSV transactions. Works as a CLI tool and a browser-based WebAssembly UI — all processing is client-side, no data leaves your machine.
## Quick Start
```bash
# Build both CLI and WASM UI
just build
# Parse a PDF via CLI
just run
# Start the browser UI (hot-reload at localhost:8080)
just serve
```
## Usage
**CLI:**
```bash
cargo run -- statement.pdf
# outputs transactions.csv
```
**Browser UI:** Open `just serve`, drag-and-drop a PDF, view the table, and download CSV.
## Architecture
See [ARCHITECTURE.md](ARCHITECTURE.md) for design details.