quiffen
quiffen copied to clipboard
Quiffen is a Python package for parsing QIF (Quicken Interchange Format) files.
When parsing a QIF file i got the error message: ValueError Unknown line code: S I'd rather get more details about the error e.g. ValueError: Unknown line code: S in...
quiffen breaks some of my pandas depdencies since it forces a 1.5 pandas. It would be great i quiffen would relax this dependency so that i am not forced to...
## Bug repro Repro using the "test.qif" from this repo: ``` from quiffen import Qif qif = Qif.parse('qif/test.qif', day_first=False) print(qif.accounts) ``` ``` (.venv) [user@box mydir]$ python3 process.py Traceback (most recent...