A Python library for converting between Gregorian and Jalali (Persian/Solar Hijri) dates, targeting Python 3.8+. Version 1.0.0 is the first stable release, with a focus on simplicity and correctness. The library provides a single core function for conversion and is designed to be lightweight with no external dependencies. Release cadence is not yet established.
pip install jalali-coreVerified import paths — ran on the pinned version, not inferred.
Basic conversion between Gregorian and Jalali dates.
Ensure Jalali years are positive (>= 1).
Validate Jalali dates yourself before conversion (e.g., month 1-12, day according to month).
Install with `pip install jalali-core`, then import as `from jalali_core import ...`.
Use `JalaliToGregorian()( (year, month, day) )` with a tuple argument.
No dependency data recorded yet.