I'm having issues with code that used to work during weeks.
The problem comes from this part of my code:
TypeError: ifile = open('0_Inputs/CompaniesList.csv', "r", encoding = 'utf-8')
I got the following message:
open() got an unexpected keyword argument 'encoding'
If i try:
ifile = open('0_Inputs/CompaniesList.csv', "r")
then i have an other error:
OSError: cannot identify image file '0_Inputs/CompaniesList.csv'
Im doing from PyPDF2 import PdfFileReader, PdfFileWriter
but I don't if there's a conflict between libraries?
Thank you!