Data validation library for Python, inspired by Laravel's validation system. Current version 3.4.0, supports Python >=3.6. Active development with frequent releases.
pip install spotlightNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Minimal example of creating a Validator instance, checking passes, and retrieving errors.
Use `from spotlight import Validator`.
Use pipe-separated rules: `'required|email|min:5'`.
Use `Validator` class with `passes()` or `fails()` methods instead of `validate()`.
Use `from spotlight import Validator`.
First call `v.passes()` or `v.fails()`, then access `v.errors()`.
No dependency data recorded yet.