mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-12-13 23:29:04 +00:00
18 lines
510 B
Python
18 lines
510 B
Python
default_options = {
|
|
"ThumbnailQuality": "85",
|
|
"ThumbnailSize": "275",
|
|
"ThumbnailColor": "FF00FF",
|
|
"TextFileContentLength": "2000",
|
|
"PdfFileContentLength": "2000",
|
|
"SpreadsheetContentLength": "2000",
|
|
"EbookContentLength": "2000",
|
|
"MimeGuesser": "extension", # extension, content
|
|
"CheckSumCalculators": "", # md5, sha1, sha256
|
|
"FileParsers": "media, text, picture, font, pdf, docx, spreadsheet, ebook"
|
|
}
|
|
|
|
index_every = 10000
|
|
nGramMin = 3
|
|
nGramMax = 3
|
|
bcrypt_rounds = 14
|