My workflow with beangulp is that I have a script that runs import.py for
each bank
#!/usr/bin/env python3
from importers.some_bank import importer as some_bank
import beangulp
importers = [
some_bank.Importer(),
]
hooks = []
if __name__ == "__main__":
ingest = beangulp.Ingest(importers, hooks)
ingest()
The script then copies the imported files to an folder for imported files.
I'm sure this workflow is not ideal. Is there any repo that showcases a
better workflow when using beangulp?
--
You received this message because you are subscribed to the Google Groups
"Beancount" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/beancount/1a984943-6ff9-4dc0-b0cc-31a1e879dd0fn%40googlegroups.com.