blob: 214e9735d1b36ab4bfa757840c5f1dd8727f7566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#+TITLE: Quick and Dirty QIF Preprocessing
This small Rust program to preprocess QIF files that I get from my
bank account. This mostly means normalizing the descriptions a bit,
since my bank statement often does silly things like appending a
timestamp to the end and insert transactions with a value of 0. Also,
different stores in the same franchise sometimes use slightly
different names. For example, I normalize "Kung fu kitchen", "Kung-fu
kitchen" and "Kungfu kitchen" to have the same description.
This is highly specialized for my own use, and isn't intended to be
generally useful or configurable.
For an example of a qif file, look at [[./example.qif]]
* Usage
#+BEGIN_EXAMPLE
USAGE:
qif_parser [files]...
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
ARGS:
<files>... Files to preprocess
#+END_EXAMPLE
* License
See [[./license.org]]
|