Your solution to cleansing PDF documents for preprocessing for NLP
Project description
doc_intel
pip install doc-intel
This package is subject to several potential fixes and until then any benefits derived by using this is very much intended.
doc_intel is your solution to a largely cleansed and intact text extract from a PDF.
change 0.0.1 (8 / 23 / 2021) :
- Line breaks lead to breakage of full words into smaller potentially non dictionary words and changes have been made to fix that.
- A dictionary has been used to identify how to reconstruct the broken words.
change 0.0.2 (8 / 28 / 2021) :
- Updated dictionary, maybe inverse document frequency will later be used instead to fix the line breaks.
- Inverse document frequency has been used to precisely split and reconstruct stitched or meaninglessly spaced words.
change 0.0.3 (9 / 10 / 2021) :
- added and removed words in word.txt, fixed dot spacing and conserved number word detachment post processing"
change 0.0.4 (9 / 14 / 2021) :
- added and removed words in word.txt, maintained the positions of apostrophes.
Major Version Update 1.0.0 (19 / 10 / 2021) :
- A new module has been added for to serve requirements of deletion and addition of words in the word text file.
- Usage demonstration can be found under the feature instruction section.
Feature instruction:
REMOVE THE HEADER AND FOOTER TERMS FORM YOUR DOCUMENT:
from doc_intel import text_laundry
file_path = / your_path/ your_file.pdf
texts = text_laundry.head_foot(file_path).remove()
SCRUB OFF TEXTUAL NOISE FROM YOUR TEXTS:
Arguments :
-
serial numerical noise [bool]: noise like
(text) + (random numbers, spaced or continous)
will be removed. -
sentences or words interrupted with special characters [bool] : All cohesive words and sentences interruptions like
co -hesive
orsol **utions
should be removed. -
lower case [bool] : toggle between bool values for lower or upper casing.
-
s u b s t r i n g s w h i c h a r e a t t a c h e d w i l l b e s e p a r a t e d
-->substrings which are attached will be separated
(based on the fequency of the constituent words in the document).
text_object = text_laundry.load_text([input str], remove_serial, sents_or_word_breaks, lower)
cleaned_text = text_object.launder()
ADD AND DELETE WORDS FROM IN-BUILT DICTIONARY:
- PDF documents are not purposely written to suite document extraction and therefore, a lot of discontinued words in the documents end up broken with ordinary text extraction.
- doc-intel's in-built dictionary support identification of many 1000s of words which is now editable. Add and remove words as you require for your smooth text extraction.
do-cument
-->document
from doc_intel import manage_diction
word_list = " your list of words to either add or delete "
manage_diction.register_words(word_list).Add() #or
manage_diction.register_words(word_list).Delete()
Authored & Maintained By : Vishak Arudhra
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file doc_intel-1.0.0.tar.gz
.
File metadata
- Download URL: doc_intel-1.0.0.tar.gz
- Upload date:
- Size: 881.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 838131c262fac35917105530205e0f95fdc21c7e7601ff92f182e3c2ca45eb46 |
|
MD5 | 86ea28a1fbd416175f33dc595d8e2521 |
|
BLAKE2b-256 | 9a4849a2d1f06941ecc98554f26d1dd8a8108c99093cfc4535b229b707f3ca00 |
File details
Details for the file doc_intel-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: doc_intel-1.0.0-py3-none-any.whl
- Upload date:
- Size: 880.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87ea706742e3495f530365b0d8344d2f10bcf833310ed167210a769ae72a0383 |
|
MD5 | cc2578a8bd7681bcdae9b2baa5fc89b4 |
|
BLAKE2b-256 | 2fa2b22d91515b3aade3a57c157914cb91d812b045b729080cf783692440ad83 |