Metadata-Version: 2.1
Name: jcalendar
Version: 0.1.2
Summary: Jalali calendar binding for python
Home-page: https://github.com/IKermani/jcalendar
Author: Iman Kermani
Author-email: imankermani97@outlook.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/IKermani/jcalendar/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# jcalendar
jcalendar is [Jalali](https://en.wikipedia.org/wiki/Iranian_calendars) implementation of Python's calendar module

## Install

```
pip install jcalendar
```

## Documents

This module *almost* follows [Python calendar](https://docs.python.org/3/library/calendar.html).
> *almost*: locale is not implemented yet.

## Example

```Python console
>>> c = calendar.TextCalendar()
>>> c.prmonth(1400, 5)
    Mordad 1400
Sa Su Mo Tu We Th Fr
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
```

## Todo
- [ ] support calendar locale




