Skip to content

Commit

Permalink
feat: add schwab csv credit line importer
Browse files Browse the repository at this point in the history
  • Loading branch information
redstreet committed Feb 9, 2024
1 parent c33e02f commit 1d37918
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions beancount_reds_importers/importers/schwab/schwab_csv_creditline.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
""" Schwab Credit Line (eg: Pledged Asset Line) .csv importer."""

from beancount_reds_importers.importers.schwab import schwab_csv_checking

class Importer(schwab_csv_checking.Importer):
IMPORTER_NAME = 'Schwab Line of Credit CSV'

def custom_init(self):
super().custom_init()
self.filename_pattern_def = '.*_Transactions_'
self.column_labels_line = '"Date","Type","CheckNumber","Description","Withdrawal","Deposit","RunningBalance"'

0 comments on commit 1d37918

Please sign in to comment.