FTS desktop file search with previews
Go to file
Albert S. 69acc65065 added TODO 2018-08-12 17:06:43 +02:00
gui begin work on qt gui - basic search & pdf preview 2018-08-12 16:45:39 +02:00
README.md updated README 2018-08-12 16:47:55 +02:00
TODO added TODO 2018-08-12 17:06:43 +02:00
addindex remove pdf_pagecount() 2018-08-09 23:00:44 +02:00
config.py rename from easyindex to qss 2018-08-12 16:47:46 +02:00
create.sql begin groundwork to save pages in docs, not just everything 2018-08-09 16:37:30 +02:00
delindex rename from easyindex to qss 2018-08-12 16:47:46 +02:00
searchindex save each page of a pdf file 2018-08-09 19:30:28 +02:00

README.md

qss

qss creates a poor-man full-text search for your files using a sqlite database.

You need the python "chardet" package, since it will try to convert the encoding of the files in case initial utf-8 decoding fails.

pdftext is needed to search in .pdf files..

A simple gui (C++ with Qt5) for search is found in gui/. It shows preview pages of documents where your search keywords have been found. This allows you to search all indexed pdfs and take a look at the pages side by side in an instant.

Build

TO BE WRITTEN

Setup

sqlite3 qss.db < create.sql

TO BE WRITTEN