1

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?

Martin Thoma
  • 124,992
  • 159
  • 614
  • 958
Learnings
  • 2,780
  • 9
  • 35
  • 55

1 Answers1

2

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

Martin Thoma
  • 124,992
  • 159
  • 614
  • 958