Code Monkey home page Code Monkey logo

documentextraction's Introduction

DocumentExtraction

This Repository contain code for extracting details such as author, author institution, companies, target price of company, BUY/SELL call from financial PDF documents.

Installation

Use the package manager pip to install foobar.

apt install tesseract-ocr
apt-get install poppler-utils

pip install -r requirements.txt

python -m spacy download en_core_web_trf
python -m spacy download en_core_web_sm

Also install tesseract on your Windows device and add the path to the script with

import pytesseract

pytesseract.pytesseract.tesseract_cmd = (
    # path to .exe file in windows
    r"C:\Users\user\Programs\Tesseract-OCR\tesseract.exe"

    # Linux('which tesseract' to get the path, after installing tesseract)
    r"/usr/bin/tesseract" 
)

NOTE: pytesseract is only necessary for methods using Tesseract-OCR.

Usage

ImageTools

from ImgProcess import ImageTools

# split the document image into region of interest
# avoid useless parts of the document

pdf_image = 'path to image of document'
img_tool = ImageTools()
doc_imgs = img_tool(pdf_image)

PDFReader

from reader import PDFReader

# returns the text content in a PDF file using ImageTools
# 3 available methods
# - pdfplumber
# - pytesseract
# - pytesseract_split

reader = PDFReader(pdf_method='tesseract_split')
text_content = reader('path_to_pdf_document')

EntityRecognition

from NER import EntityRecognition

# extracts the details from the text content 
ER = EntityRecognition(pdf_method='tesseract_split')
author_institution, author, companies, target = ER(text_content)
# Extract details from a single pdf file
python main.py ----pdf_method='tesseract_split' --pdf_file='path_to_pdf'

# Extract details from a directory of pdf files
python main.py ----pdf_method='tesseract_split' --pdf_dir='path_to_pdf_dir'

# Extract details from a directory of pdf files to CSV file
python results.py ----pdf_method='tesseract_split' --pdf_dir='path_to_pdf_dir' --csv_path='path_to_csv'

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

documentextraction's People

Contributors

shangeth avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.