I'm using pyinstaller to generate an executable from my code. That is working as expected. The problem is the file size being over 30 MB. I only need the methods read_csv and read_excel from the pandas library. Is there a way for me to maybe exclude everything else except read_csv and read_excel?
I'm calling the methods in my code with the following.
from pandas import read_excel
from pandas import read_csv