-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_config.ini
More file actions
49 lines (37 loc) · 1.51 KB
/
example_config.ini
File metadata and controls
49 lines (37 loc) · 1.51 KB
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
47
48
49
[GENERAL]
# Path to uncompressed GNUCash xml file.
input = example_accounts.gnucash
# Show some output while running.
verbose = yes
# Reports to include, see readme for descriptions.
# Balance Reports
accountBalances = yes
accountChanges = yes
assetsByCategory = yes
#Income Reports
incomeStatment = yes
# Where to save files, will overwrite without prompting. Relative to
# GNUCashReport.py, use forward slashes between folders (even on Windows).
accountBalancesOutput = output/2020_Asset_Account_Balances.csv
accountChangesOutput = output/2020_Asset_Account_Changes.csv
assetsByCategoryOutput = output/2020_Assets_by_Category.csv
incomeStatmentOutput = output/2020_Income_Statement.csv
# Group report by dates, each date range will be a row in the CSVs.
dates = 2020-09-01, 2020-09-30,
2020-10-01, 2020-10-31,
2020-11-01, 2020-11-30,
2020-12-01, 2020-12-31
# Options specific to the three balance reports (Account Balances, Account
# Changes, and Assets by Category).
[BALANCE REPORTS]
# Account paths as they are in GNUCash, depth is the level displayed in the report.
# Depth of 0 is the given account, 1 is below that, etc..
accounts = Assets:Investments, 1,
Assets:Speculative Investments, 1,
Liabilities, 1
# Options specific to income reports (Income Statement).
[INCOME REPORTS]
# Account paths as they are in GNUCash, depth is the level displayed in the report.
# Depth of 0 is the given account, 1 is below that, etc..
accounts = Expenses, 1,
Income, 1