Prashasst commited on
Commit
fb39985
·
verified ·
1 Parent(s): f629a2f

Update file_processing.py

Browse files
Files changed (1) hide show
  1. file_processing.py +5 -0
file_processing.py CHANGED
@@ -6,6 +6,11 @@ from PIL import Image
6
  from abc import ABC, abstractmethod
7
 
8
 
 
 
 
 
 
9
  #Abstract Base Class (Interface)
10
  class FileProcessor(ABC):
11
  """Abstract class for file processing."""
 
6
  from abc import ABC, abstractmethod
7
 
8
 
9
+
10
+ pytesseract.pytesseract.tesseract_cmd = "/usr/bin/tesseract"
11
+
12
+
13
+
14
  #Abstract Base Class (Interface)
15
  class FileProcessor(ABC):
16
  """Abstract class for file processing."""