gncxml
gncxml - extract entries from GnuCash data file to pandas.DataFrame
Installation
pip install gncxml
Usage (Command Line)
usage: gncxml [-h] [-l] [--csv] TYPE [FILE]
gncxml - print entries in GnuCash data file as data frame
positional arguments:
TYPE type of entries to print (account | commodity | price | split |
transaction)
FILE GnuCash data file (XML format)
options:
-h, --help show this help message and exit
-l, --long list in long format
--csv print in csv format
Usage (Python Module)
import sys
import gncxml
try:
book = gncxml.Book("mybook.gnucash")
except OSError as err:
sys.exit(err)
# Extract splits as pandas.DataFrame
df = book.list_splits()
print(df[df["trn_date"] >= "2023-07-01"].to_csv())
See also: examples/module_usage.ipynb
License
Copyright 2017-2022 LiosK
Licensed under the Apache License, Version 2.0.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gncxml-0.8.0.tar.gz
(11.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
gncxml-0.8.0-py3-none-any.whl
(12.8 kB
view details)
File details
Details for the file gncxml-0.8.0.tar.gz.
File metadata
- Download URL: gncxml-0.8.0.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.1 CPython/3.14.6 Darwin/25.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d987a09691255a0a5c753ed453412a2216e6d4977537131d3141150d6b4ab1f3
|
|
| MD5 |
8e06f870ed591db9f88c5a9e6f479e62
|
|
| BLAKE2b-256 |
ddb7cb5c0b40e822a8f16c81e36c0b6b2219fb9526be24520c9ad78600298710
|
File details
Details for the file gncxml-0.8.0-py3-none-any.whl.
File metadata
- Download URL: gncxml-0.8.0-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.1 CPython/3.14.6 Darwin/25.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37400dfc5254313a6fdbe9f8d816ca0b23b65b5aefbd781a53753303cc3597ab
|
|
| MD5 |
014a830f7b474b438f30860ce183d811
|
|
| BLAKE2b-256 |
d41a00009f6626a04150b23e0d0969e0923f84a5fca70e8fb1597aaa390e6a25
|