added scaffold struct for the prj
This commit is contained in:
15
kg_ocr/ocr/constants.py
Normal file
15
kg_ocr/ocr/constants.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from pathlib import Path
|
||||
|
||||
import platform
|
||||
|
||||
def_paths = {
|
||||
"Darwin": Path.home() / "Desktop",
|
||||
"Windows": Path.home() / "Pictures" / "Screenshots",
|
||||
"Linux": Path.home() / "Pictures",
|
||||
}
|
||||
|
||||
sc_pathpatterns = {
|
||||
"Darwin": ["SCR*.png", "Screenshot*.png"],
|
||||
"Windows": ["Screenshot*.png"],
|
||||
"Linux": ["Screenshot*.png", "scrot*.png", "screenshot*.png"],
|
||||
}
|
||||
Reference in New Issue
Block a user