-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPROOFREAD.TXT.FILES.py
29 lines (29 loc) · 1.77 KB
/
PROOFREAD.TXT.FILES.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#--
#-- ************************************************************************************************************:
#-- ****************************************** AUTOMATE PROOFREADING: ******************************************:
#-- ************************************************************************************************************:
#-- Author: JBALLARD (JEB) :
#-- Date: 2023.3.07 :
#-- Script: PROOFREAD.TXT.FILES.py :
#-- Purpose: A python script that proofreads text for grammatical & spelling errors. :
#-- Version: 1.0 :
#-- ************************************************************************************************************:
#-- ************************************************************************************************************:
#--
#--python -m pip install lmproof
#--
#-- ********************************************************:
#-- DEFINE PARAMS, CONSTANTS, CONFIG PATHS, IMPORT CLASSES :
#-- ********************************************************:
import lmproof as lm
#--
#-- AUTOMATE PROOFREADING:
def ProofRead(text):
proof = lm.load("en")
corrections = proof.proofread(text)
print("PROOFREAD: ", corrections)
ProofRead("The brow fox jumpe the lazy dog.")
#--
#-- ********************************************************:
#-- END OF PYTHON SCRIPT :
#-- ********************************************************: