https://github.com/dralshehri/hijridate
Accurate Hijri-Gregorian date conversion based on Umm al-Qura calendar
https://github.com/dralshehri/hijridate
calendar conversion converter date gregorian hijri islamic python saudi-arabia ummalqura ummulqura
Last synced: about 2 months ago
JSON representation
Accurate Hijri-Gregorian date conversion based on Umm al-Qura calendar
- Host: GitHub
- URL: https://github.com/dralshehri/hijridate
- Owner: dralshehri
- License: mit
- Created: 2018-10-28T08:37:30.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2026-01-11T09:00:30.000Z (5 months ago)
- Last Synced: 2026-03-24T07:42:37.276Z (3 months ago)
- Topics: calendar, conversion, converter, date, gregorian, hijri, islamic, python, saudi-arabia, ummalqura, ummulqura
- Language: Python
- Homepage: https://hijridate.readthedocs.io
- Size: 610 KB
- Stars: 80
- Watchers: 7
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
- Awesome-Muslims - HijriDate - Qura calendar. (Libraries & Plugins / Python)
- awesome-islamic-open-source-apps - hijridate
README
# HijriDate
> formerly `hijri-converter`
A Python package for accurate Hijri-Gregorian date conversion using the Umm al-Qura calendar.
HijriDate provides reliable date conversion based on official sources, including archived Umm al-Qura newspaper publications and comparative calendar data from King Abdulaziz City for Science and Technology (KACST). The package has been thoroughly tested and verified against original references to ensure accuracy and reliability.
[][release] [][coverage] [][downloads] [][pypi-version] [][conda-version] [][license] [ ][doi]
[release]: https://github.com/dralshehri/hijridate/releases/latest
[coverage]: https://github.com/dralshehri/hijridate/releases/latest
[downloads]: https://pepy.tech/project/hijri-converter
[pypi-version]: https://pypi.python.org/pypi/hijridate
[conda-version]: https://anaconda.org/conda-forge/hijridate
[license]: https://github.com/dralshehri/hijridate/blob/main/LICENSE
[doi]: https://doi.org/10.5281/zenodo.11200950
## ✨ Features
- Accurate and verified Hijri-Gregorian date conversion
- Based on official Umm al-Qura calendar sources and archived publications
- Optimized performance compared to existing implementations
- Comprehensive input validation and error handling
- Multilingual support for Arabic, English, and other languages
- Rich comparison operations and date formatting options
- Full type annotations and 100% test coverage
- Zero runtime dependencies
- Compatible with Python 3.9+
## ⚠️ Limitations
**Date Range**: The converter supports dates from 1343 AH to 1500 AH (1 August 1924 CE to 16 November 2077 CE), corresponding to the period covered by available official calendar sources.
**Religious Context**: Not intended for religious purposes where lunar crescent sighting is preferred over astronomical calculations.
## 📦 Installation
To install using `uv`, run:
```shell
uv add hijridate
```
To install using `pip`, run:
```shell
pip install hijridate
```
To install using `conda`, run:
```shell
conda install -c conda-forge hijridate
```
## 🚀 Basic Usage
```python
from hijridate import Hijri, Gregorian
# Convert a Hijri date to Gregorian
hijri_date = Hijri(1445, 6, 15)
gregorian_date = hijri_date.to_gregorian()
print(gregorian_date) # 2023-12-28
# Convert a Gregorian date to Hijri
gregorian_date = Gregorian(2023, 12, 28)
hijri_date = gregorian_date.to_hijri()
print(hijri_date) # 1445-06-15
```
## 📚 Documentation
Please refer to for complete documentation on this package, which includes background information, benchmarking, usage examples, and API reference.
## 🤝 Contributing
If you're interested in contributing, please check out the [Contributing](https://github.com/dralshehri/hijridate/blob/main/CONTRIBUTING.md) guide for more information on how you can help!
## 📄 License
This project is licensed under the terms of the MIT license.
## 🙏 Acknowledgements
- [R.H. van Gent](http://www.staff.science.uu.nl/~gent0113) — inspiration, scientific guidance and resources.
- [@AZalshehri7](https://github.com/AZalshehri7) — support in dates review and conversion accuracy verification.
## 📝 Citation
If you plan to cite this project in your academic publication, please refer to for citation information.