BNP_PDF_statement_parser/bnp_pdf_statement_parser.py

72 lines
2.3 KiB
Python
Raw Normal View History

2023-06-21 00:36:27 +02:00
#!/usr/bin/python3
# Depends on `pdftotext`.
import os, subprocess, shlex, re, config
path = f'/home/benjamin/Desktop/bens_folder/bazaar/documents/bnp/RLV_CHQ_{config.RLV_CHQ}'
2023-06-21 00:36:27 +02:00
os.chdir(path)
'''
Assuming file hierarchy like:
2022
20221121.pdf
20221221.pdf
2023
20230123.pdf
20230221.pdf
'''
def execute(command):
return subprocess.check_output(command, shell = True).decode('utf-8')
def getTextFromPdf(pdfPath):
pdfPath = shlex.quote(pdfPath)
return execute(f'pdftotext -raw {pdfPath} -')
firstLineOfPaymentRegex = re.compile('\d{2}\.\d{2} \d{2}\.\d{2} \d+,\d{2}')
endPageAfterTheFirstOneRegex = re.compile('P\. \d+/\d+')
2023-06-21 00:57:16 +02:00
soldeCrediteurAuRegex = re.compile('SOLDE CREDITEUR AU \d{2}\.\d{2}\.\d{4}')
2023-06-21 00:36:27 +02:00
for folder in os.listdir():
for file in os.listdir(folder):
2023-06-21 00:57:16 +02:00
#folder = '2022'
#file = '20220321.pdf'
2023-06-21 00:36:27 +02:00
print(folder, file)
filePath = f'{folder}/{file}'
content = getTextFromPdf(filePath)
lines = content.splitlines()
started = False
firstPage = True
payment = []
2023-06-21 00:57:16 +02:00
initialAmount = None
2023-06-21 00:36:27 +02:00
for line in lines:
if not started:
# We are interested in the content after this line:
2023-06-21 00:57:16 +02:00
if soldeCrediteurAuRegex.match(line) != None or (line.startswith('Date Nature des opérations Valeur Débit Crédit') and not firstPage):
if soldeCrediteurAuRegex.match(line):
initialAmount = float(soldeCrediteurAuRegex.sub('', line).replace(',', '.').replace(' ', ''))
print(initialAmount)
2023-06-21 00:36:27 +02:00
started = True
continue
else:
# We aren't interested in the content after this line:
if line.startswith('BNP PARIBAS SA au capital de') or endPageAfterTheFirstOneRegex.match(line) != None:
firstPage = False
started = False
continue
# We aren't interested in the content after this line
elif line.startswith('TOTAL DES OPERATIONS'):
break
if firstLineOfPaymentRegex.match(line) != None:
print()
print(line)
break
break
# TODO: check year
# TODO: debit/credit
# TODO: amount after transaction