Extract Text from any PDF File in Python 3.10 Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ก.พ. 2025
  • Today we will be learning how we can extract the text from PDF files in Python 3.10, so that we can later process that text in any way we please.
    ▶ Become job-ready with Python:
    www.indently.io
    ▶ Follow me on Instagram:
    / indentlyreels

ความคิดเห็น • 40

  • @tobiwie
    @tobiwie ปีที่แล้ว +19

    In some of the latest updates to PyPDF2 the class "PdfFileReader" got replaced with "PdfReader". Code still works fine with "PdfReader". :)

  • @frapsg2
    @frapsg2 11 หลายเดือนก่อน +1

    Awesome, so helpful! That's much simpler and ready-to-use compared to all others approaches found online. Is there a way to export the extracted text to a csv or xlsx file?

  • @akashnath7999
    @akashnath7999 2 ปีที่แล้ว +3

    It's so helpful...loved it ❤

    • @Indently
      @Indently  2 ปีที่แล้ว +2

      Glad it helped! :)

  • @vitaliibaglaiev4147
    @vitaliibaglaiev4147 9 หลายเดือนก่อน

    Just amazing explanation, short and sweet!

  • @Mike_elGreco
    @Mike_elGreco 11 หลายเดือนก่อน

    It worked! Thank you !!

  • @vishnumuralidhar5659
    @vishnumuralidhar5659 ปีที่แล้ว

    Thanks for the awesome tutorial. Please do the video for two sided pdfs. Which wasnt there on youtube🙃

  • @boukefmohamed3191
    @boukefmohamed3191 10 หลายเดือนก่อน

    Excellent

  • @mehdismaeili3743
    @mehdismaeili3743 2 ปีที่แล้ว

    great as always.

  • @kevinmakumbe
    @kevinmakumbe ปีที่แล้ว

    Nice tutorial, how can i get the cordinates of the text in my pdf file?

  • @オタヴィオルイス
    @オタヴィオルイス 2 ปีที่แล้ว

    helped me a lot. Thanks

  • @MedoHamdani
    @MedoHamdani 9 หลายเดือนก่อน

    Will it work on Arabic language and will it be able to extract hand written manuscript?

  • @valmirrastelyjunior9400
    @valmirrastelyjunior9400 ปีที่แล้ว

    Great

  • @albeeshi
    @albeeshi ปีที่แล้ว +3

    How to extract data from more than one PDF file and put it in a table

  • @rs-nm7hp
    @rs-nm7hp 2 ปีที่แล้ว +1

    U r awesome 👏

    • @Indently
      @Indently  2 ปีที่แล้ว

      Thanks! :)

  • @mohammedasimsameer1220
    @mohammedasimsameer1220 ปีที่แล้ว

    Thank you bro

  • @atharkhalid3275
    @atharkhalid3275 ปีที่แล้ว

    what if we want to extract text for any particular page

  • @as8243
    @as8243 3 หลายเดือนก่อน

    this only extracted text from the first page of my PDF. anyone else have this issue?
    Thanks for the video!

  • @gvenagas
    @gvenagas 8 หลายเดือนก่อน

    I found that by opening a pdf file with Mozilla Firefox and inspecting it with the developer tools you can collect its text (with the help of JavaScript) after the web browser has converted it to HTML and maybe save it for further processing with someone programming language.

  • @Miyazaki97
    @Miyazaki97 2 ปีที่แล้ว

    Thank you for the awesome tutorial. I have a some question about extracting articles. I hope you can help me. While extracting articles and reports there are many references and table legends, titles which is not required. Would it be possible to remove all those references and table contents including legends and titles when extracting the pdf file?

  • @rishikeshchava6895
    @rishikeshchava6895 9 หลายเดือนก่อน

    Hey , I have some 600 files which have large volume of data, text extraction using pypdf2 is taking a lot of time , is there any other way to do this ?

  • @jvwee
    @jvwee ปีที่แล้ว

    I am pretty sure there are over a thousand isntances of the word "coffee" in the pdf. However, this seems to have only counted the number of pages that the word appeared.

  • @davet4335
    @davet4335 ปีที่แล้ว +9

    The code did not work for me on a Windows 11 PC. I kept having ChatGPT analyze the code and error messages and after many tires it fixed it:
    import os
    import PyPDF2
    import re
    import math
    def extract_text_from_pdf(pdf_file: str) -> [str]:
    # Open the PDF file of your choice
    with open(pdf_file, 'rb') as pdf:
    reader = PyPDF2.PdfReader(pdf)
    pdf_text = []
    for page in reader.pages:
    content = page.extract_text()
    pdf_text.append(content)
    return pdf_text
    def main():
    extracted_text = extract_text_from_pdf('sample.pdf')
    for text in extracted_text:
    print(text)
    if __name__ == '__main__':
    main()

    • @Absolute_gamerz
      @Absolute_gamerz 11 หลายเดือนก่อน

      Thanks !

    • @milans2373
      @milans2373 11 หลายเดือนก่อน

      Thank you so fucking much i got crazy over this

    • @talhafaiz3597
      @talhafaiz3597 6 หลายเดือนก่อน

      Thanks a lot mate!

  • @gulfamhussain9674
    @gulfamhussain9674 6 หลายเดือนก่อน

    Do you have any solution for pdfs with characters because when I try to apply this solution on those pdfs it prints gibberish characters.

  • @louis19449
    @louis19449 ปีที่แล้ว

    how do you add the pdf file to the project?

  • @zainsaqib3702
    @zainsaqib3702 2 ปีที่แล้ว

    I keep on getting Syntax Error: unmatched ')' on line 4 I'm running python 3.9 could that be the case?

  • @MedoHamdani
    @MedoHamdani 8 หลายเดือนก่อน

    So this is not an OCR

  • @Sathishedutech
    @Sathishedutech ปีที่แล้ว

    Hi sir..is it Work on Local Language Like Telugu

  • @gianlucagiannetto5146
    @gianlucagiannetto5146 7 หลายเดือนก่อน

    I wrote the code line per line, word for word but it continue to give me File not found, how it's possible?
    p.s. I managed to extrat text, the only problem is the layout of the answer, i have a string long miles

    • @enkvadrat_
      @enkvadrat_ 6 หลายเดือนก่อน +1

      def convert_pdf_to_text(pdf_path):
      with pdfplumber.open(pdf_path) as pdf:
      for page in pdf.pages:
      text = page.extract_text(layout=True)
      print(text)
      return text

  • @raniarasmy6489
    @raniarasmy6489 2 ปีที่แล้ว

    please the resolution of your screen is not clear

    • @Indently
      @Indently  2 ปีที่แล้ว

      Just change the resolution on TH-cam from 144p to 720p

  • @Baka_Oppai
    @Baka_Oppai ปีที่แล้ว

    no idea how this is setup kina pointless where is pypdf do i get it from inside my bum bum? and what is this program?

    • @enkvadrat_
      @enkvadrat_ 6 หลายเดือนก่อน

      pip install pypdf