I want to scrape the data present in 7th page of this PDF and move to dataframe then CSV.
Could you please help on the same?
I want to scrape the data present in 7th page of this PDF and move to dataframe then CSV.
Could you please help on the same?
Install the pypdf
package. You can use pypdf.PdfReader() to extract the data from PDF to a string. Then use the csv.writer() in the csv module(in-built) to write it to csv. You have to read more on them