delete requirements (see requirements.txt) & working script for beancount 2.3.4

This commit is contained in:
2025-08-01 17:37:21 +00:00
parent acb3622ef1
commit 878bfd12a9
5 changed files with 103 additions and 17 deletions

15
config.py Normal file
View File

@@ -0,0 +1,15 @@
# config.py
import sys
import os
# Voeg de map van dit bestand toe aan de Python-zoekpaden.
# Dit zorgt ervoor dat je importer gevonden kan worden.
sys.path.insert(0, os.path.dirname(__file__))
# De importregel hieronder zal nu correct werken
from postbank_csv_importer import MyCSVImporter
CONFIG = [
MyCSVImporter()
]