summaryrefslogtreecommitdiff
path: root/main.py
blob: e30e229e0627eecba0e5240ae9c5a9a75de1fb75 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import sys
import os
import time

from ledger import *

def hello (str):
    print "Hello:", str
def goodbye (str):
    print "Goodbye:", str

add_config_option_handlers ()
add_option_handler ("hello", ":", hello)
add_option_handler ("goodbye", ":", goodbye)

args = process_arguments (sys.argv[1:])
process_environment (os.environ, "LEDGER_")

text_parser = TextualParser ()
register_parser (text_parser)

journal = Journal ()
print parse_journal_file (args[0], journal), "entries"

class FormatTransaction (TransactionHandler):
    def __init__ (self, fmt):
	self.formatter = Format (fmt)
	TransactionHandler.__init__ (self)

    def __call__ (self, xact):
	print self.formatter.format(xact)

def foo(d, val):
    return d.xact.amount + val

handler = FormatTransaction("%D %-20P %N %('foo'{$100})")
handler = FilterTransactions (handler, "/Checking/")

expr = parse_value_expr ("a*2")

for entry in journal:
    for xact in entry:
	handler (xact)

for date in Interval ("weekly last month"):
    print time.strftime ("%c", time.localtime (date))