Indexly Usage Guide

A complete usage guide for Indexly. Discover installation steps, Windows Terminal setup, indexing, search, tagging, filtering, and exporting results in PDF, Markdown, or text formats.

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

Windows Terminal placeholder


Basic Workflow

flowchart LR
A[Index files ๐Ÿ“‚] --> B[Search ๐Ÿ”]
B --> C[Tag & Filter ๐Ÿท๏ธ]
C --> D[Export ๐Ÿงพ]

Indexing

indexly index '/path/to/folder'

Sample indexing

Searching

indexly search "term"
indexly regex "pattern"

Sample Search

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