I want to use Python to convert a pdf file to an excel file and save it locally. I've converted the PDF to Excel, but how can I locally save it?
my code:
df = ("./Downloads/folder/myfile.pdf")
tabula.convert_into(df, "test.csv", output_format="csv", stream=True)