I am having one pdf file and want to transform it into excel and want to store it locally through python. I have used the below code for converting the file but I am not able to save it, kindly guide me on how I can save the file?
df = ("./Downloads/folder/myfile.pdf")
tabula.convert_into(df, "test.csv", output_format="csv", stream=True)