statement-parser 0.0.4__tar.gz → 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {statement_parser-0.0.4/statement_parser.egg-info → statement_parser-0.0.6}/PKG-INFO +1 -1
- {statement_parser-0.0.4 → statement_parser-0.0.6}/pyproject.toml +1 -1
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/__init__.py +1 -1
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/banks/HsbcCredit.py +1 -3
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/banks/IciciCredit.py +1 -1
- {statement_parser-0.0.4 → statement_parser-0.0.6/statement_parser.egg-info}/PKG-INFO +1 -1
- {statement_parser-0.0.4 → statement_parser-0.0.6}/LICENSE +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/README.md +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/setup.cfg +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/Bank.py +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/Transaction.py +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/banks/HdfcCredit.py +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/banks/HsbcDebit.py +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/banks/IciciDebit.py +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/banks/KotakDebit.py +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser/banks/Wallet.py +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser.egg-info/SOURCES.txt +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser.egg-info/dependency_links.txt +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser.egg-info/requires.txt +0 -0
- {statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: statement_parser
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: Bank Statement Parser is a Python library designed to parse and normalize transaction data from various bank statement formats ( CSV, Excel, etc.) into a consistent and easy-to-use Pandas DataFrame. It supports multiple banks and file formats, making it a versatile tool for financial data analysis.
|
|
5
5
|
Author-email: Khuzema Challawala <khuzema.ac@gmail.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -22,9 +22,7 @@ class HsbcCredit(Bank):
|
|
|
22
22
|
created_date = row["Date"]
|
|
23
23
|
remarks = row["Transaction Details"].strip() + _duplicate
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
amount = row["Amount"] * _multiplier
|
|
25
|
+
amount = row["Amount"]
|
|
28
26
|
transaction = Transaction(
|
|
29
27
|
bank=self.__id_bank,
|
|
30
28
|
created_date=created_date,
|
|
@@ -42,7 +42,7 @@ class IciciCredit(Bank):
|
|
|
42
42
|
skip_rows = self.get_transaction_start(filename, ["date", "sr.no"])
|
|
43
43
|
df_full = self.load_bank_statement(filename, skip_rows=skip_rows)
|
|
44
44
|
# filter out empty rows
|
|
45
|
-
df_filtered = df_full[df_full.iloc[:,
|
|
45
|
+
df_filtered = df_full[df_full.iloc[:, 3].notna()]
|
|
46
46
|
df = df_filtered.copy()
|
|
47
47
|
return df
|
|
48
48
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: statement_parser
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: Bank Statement Parser is a Python library designed to parse and normalize transaction data from various bank statement formats ( CSV, Excel, etc.) into a consistent and easy-to-use Pandas DataFrame. It supports multiple banks and file formats, making it a versatile tool for financial data analysis.
|
|
5
5
|
Author-email: Khuzema Challawala <khuzema.ac@gmail.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{statement_parser-0.0.4 → statement_parser-0.0.6}/statement_parser.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|