Skip to content

Instantly share code, notes, and snippets.

@tim-rohrer
Created February 16, 2023 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tim-rohrer/2134a0eae64baa581ffe461c45c497ba to your computer and use it in GitHub Desktop.
Save tim-rohrer/2134a0eae64baa581ffe461c45c497ba to your computer and use it in GitHub Desktop.
Project tree
➜ move2gnucash git:(main) ✗ tree
.
├── LICENSE
├── Pipfile
├── Pipfile.lock
├── README.md
├── build
│   ├── bdist.macosx-12.0-x86_64
│   └── lib
│   └── move2gnucash
│   ├── __init__.py
│   ├── data_maps.py
│   ├── file_operations.py
│   └── mre.py
├── example.gnucash
├── example.gnucash.20230212092753.log
├── example.ini
├── examples
│   ├── 20170131_Transactions.csv
│   ├── do_example.py
│   ├── sample_balances.csv
│   ├── sample_balances_user.csv
│   ├── sample_transactions.csv
│   └── test.csv
├── pyproject.toml
├── src
│   ├── move2gnucash
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-311.pyc
│   │   │   ├── account_maps.cpython-311.pyc
│   │   │   ├── common.cpython-311.pyc
│   │   │   ├── data_maps.cpython-311.pyc
│   │   │   ├── file_operations.cpython-311.pyc
│   │   │   ├── move2gnucash.cpython-311.pyc
│   │   │   ├── mre.cpython-311.pyc
│   │   │   ├── print_name.cpython-311.pyc
│   │   │   ├── transaction_maps.cpython-311.pyc
│   │   │   └── utils.cpython-311.pyc
│   │   ├── common.py
│   │   ├── data_maps.py
│   │   ├── field_mappings.ini
│   │   ├── file_operations.py
│   │   ├── move2gnucash.py
│   │   ├── mre.py
│   │   └── utils.py
│   └── move2gnucash.egg-info
│   ├── PKG-INFO
│   ├── SOURCES.txt
│   ├── dependency_links.txt
│   └── top_level.txt
├── test-code.py
└── tests
├── __init__.py
├── __pycache__
│   ├── __init__.cpython-311.pyc
│   ├── conftest.cpython-311-pytest-7.2.1.pyc
│   ├── test_account_maps.cpython-311-pytest-7.2.1.pyc
│   ├── test_data_map.cpython-311-pytest-7.2.1.pyc
│   ├── test_data_maps.cpython-311-pytest-7.2.1.pyc
│   ├── test_file_operations.cpython-311-pytest-7.2.1.pyc
│   ├── test_move2gnucash.cpython-311-pytest-7.2.1.pyc
│   ├── test_print_name.cpython-311-pytest-7.2.1.pyc
│   ├── test_transaction_maps.cpython-311-pytest-7.2.1.pyc
│   └── test_utils.cpython-311-pytest-7.2.1.pyc
├── categories.fixture.csv
├── conftest.py
├── expenses_internal_cols.fixture.csv
├── test_data_maps.py
├── test_file_operations.py
├── test_move2gnucash.py
└── test_utils.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment