Convert Gregorian (Christian) date to Persian date and vice-versa in Python

Solution 1:

Also, you can use jdatetime library like the following:

 import jdatetime
 gregorian_date = jdatetime.date(1396,2,30).togregorian()
 jalili_date =  jdatetime.date.fromgregorian(day=19,month=5,year=2017) 

See other functions in details in this document.

Solution 2:

You can use PersianTools library:

Example:

>>> from persiantools.jdatetime import JalaliDate
>>> import datetime

>>> JalaliDate.today()
JalaliDate(1395, 4, 18, Jomeh)

>>> JalaliDate(datetime.date(1990, 9, 23))  # Gregorian to Jalali
JalaliDate(1369, 7, 1, Yekshanbeh)

>>> JalaliDate.to_jalali(2013, 9, 16)       # Gregorian to Jalali
JalaliDate(1392, 6, 25, Doshanbeh)

>>> JalaliDate(1392, 6, 25).to_gregorian()  # Jalali to Gregorian
datetime.date(2013, 9, 16)

>>> JalaliDate.fromtimestamp(578707200)     # Timestamp to Jalali
JalaliDate(1367, 2, 14, Chaharshanbeh)

Solution 3:

pip install jdatetime

import jdatetime 
fa_date = jdatetime.date.today()
fa_date.j_months_fa[0]
jdatetime.datetime.now().strftime("%a, %d %b %Y %H:%M:%S")#'Tue, 05 Far 1399 15:49:44'
jdatetime.datetime.now().strftime("%y %m %d") #'99 01 05'
jdatetime.datetime.now().strftime("%Y %m %d") # '1399 01 05'

jdatetime.datetime.now().strftime('%A %B')


 import jdatetime
 jalili_date = jdatetime.date(1399,1,5).togregorian()
 gregorian_date =  jdatetime.date.fromgregorian(day=24 ,month=3,year=2020)