Indexly Usage Guide
Categories:
Installation
You can install Indexly directly from PyPI:
pip install indexly
Or install all dependencies from the requirements file:
pip install -r requirements.txt
Or manually:
pip install nltk pymupdf pytesseract pillow python-docx openpyxl rapidfuzz fpdf2 reportlab \
beautifulsoup4 extract_msg eml-parser PyPDF2 watchdog colorama
Windows Terminal Setup
See Customizing Windows Terminal
Basic Workflow
flowchart LR A[Index files ๐] --> B[Search ๐] B --> C[Tag & Filter ๐ท๏ธ] C --> D[Export ๐งพ]
Indexing
indexly index '/path/to/folder'
Searching
indexly search "term"
indexly regex "pattern"
Exporting
The formats; .txt, .json and pdf are supported during export.
indexly search "inventory" --export-format pdf --output result.pdf
indexly search "inventory" --export-format txt --output result.txt
indexly search "inventory" --export-format json --output result.json