Metadata-Version: 2.4
Name: els-engine
Version: 0.26.1
Summary: A lightweight Python toolkit for Equidistant Letter Sequence (ELS) search.
Author: Matthew
Project-URL: Homepage, https://pypi.org/project/els-engine/
Project-URL: Source, https://github.com/yourusername/els-engine
Keywords: ELS,equidistant letter sequence,bible code,hebrew,text analysis
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE .txt
Dynamic: license-file

# els-engine

A lightweight, focused Python toolkit for performing **Equidistant Letter Sequence (ELS)** searches on Hebrew text.

Version: **0.26.1**

This package provides a clean, minimal API for scanning text at fixed skip intervals and returning structured ELS results.

---

## 📦 Installation

```bash
pip install els-engine


"""from els_engine import find_els

text = "בראשיתבראאלהיםאתהשמיםואתהארץ"
target = "אלהים"

results = find_els(text, target, skip=5)

for r in results:
    print(r)"""
