initial commit of finplan - works, with basic csv dump, need to remove unneeded variables, reformat and improve csv next

This commit is contained in:
2025-01-30 16:23:05 +11:00
commit 01d373e731
1355 changed files with 249815 additions and 0 deletions

8
.python/bin/flask Executable file
View File

@@ -0,0 +1,8 @@
#!/home/ddp/src/finplan/.python/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from flask.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())