Skip to main content

A simple package for formating arabic date and time.

Project description

arabic-datetime - Arabic datetime formatter

Author: Khaldevmedia

Description: A Python installable package that helps you output dates in Arabic as strings, with formatting specific to each Arab country.

Version: 1.0.0

Major change in v1.0.0: Create roman3 group for Somalia because it's month names are slightly different from the names in Morocco which is now alone in roman2 group.

Using The Package for Date Formatting

This Python package is designed to simplify Arabic date formatting in your project by providing easy-to-use date formatting functions. For example, it can be used to simplify your backend operations. Instead of installing a full internationalisation package in your backend, you can use this package to display Arabic dates formatted according to local settings, whether the response content type is HTML or Json. It's lightweight, efficient and easy to integrate into your existing project. By using this package, you can keep your backend lean and focused, while still providing a localised user experience.

Month names in Arabic

There are 4 groups of month names in Arabic.

Syriac names:

The Syriac names of months are used in Syria, Palestine Lebanon, Iraq and Jordan:

كانون الثاني، شباط، آذار، نيسان، أيار، حزيران، تموز، آب، أيلول، تشرين الأول، تشرين الثاني، كانون الأول.

Roman names (group 1):

The Roman names (group 1) of months are used in Egypt, Yemen, Sudan, Libya, Djibouti, Comoro, Somalia, Saudi Arabia, United Arab Emirates, Qatar, Oman, Bahrain and Kuwait:

يناير، فبراير، مارس، أبريل، مايو، يونيو، يوليو، أغسطس، سبتمبر، أكتوبر، نوفمبر، ديسمبر.

Roman names (group 2):

The Roman names (group 2) of months are used in Morocco:

يناير، فبراير، مارس، أبريل، ماي، يونيو، يوليوز، غشت، شتنبر، أكتوبر، نونبر، دجنبر.

Roman names (group 3):

The Roman names (group 3) of months are used in Mauritania:

يناير، فبراير، مارس، إبريل، مايو، يونيو، يوليو، أغشت، شتمبر، أكتوبر، نوفمبر، ديسمبر.

French names:

The French names of months are used in Algeria and Tunisia:

جانفي، فيفري، مارس، أفريل، ماي، جوان، جويلية، أوت، سبتمبر، أكتوبر، نوفمبر، ديسمبر.

Arabic Numerals

There are two groups of Arabic numerals used in the Arab countries.

Eastern Arabic Numerals

They are used in all Arab countries except Algeria, Tunisia, Morocco and Mauritania:

٠ ١ ٢ ٣ ٤ ٥ ٦ ٧ ٨ ٩

Western Arabic Numerals

They are used in Algeria, Tunisia, Morocco and Mauritania. However, they are also used in the other Arab countries that use the eastern Arabic numerals:

0 1 2 3 4 5 6 7 8 9

Numerals Options

You can use the eastern or the western Arabic numerals regardless of the month names group you use. As demonstrated below, there is always a default numerals' type depending on the method used.

Installation

pip install arabic-datetime

Examples

1. Date

The ArabicDate class has several methods that return a arabic date as string.

A specific method for every month names group

import datetime
from arabic_datetime import ArabicDate

# Create arabic_date object from a python date object
dt = datetime.date(1980, 8, 16)
arabic_date = ArabicDate(dt)

# Use each method to creat the arabic date strings
syria_date_fromat = arabic_date.syriac_names()
egypt_date_fromat = arabic_date.roman1_names()
morrocco_date_fromat = arabic_date.roman2_names()
algeria_date_fromat = arabic_date.french_names()

print(syriac_date_fromat) # output 16 آب 1980
print(egypt_date_fromat) # output 16 أغسطس 1980
print(morrocco_date_fromat) # output  16 غشت 1980
print(algeria_date_fromat) # output  16 أوت 1980

# To use Eastern Arabic Numerals pass True to the function you use
syria_date_fromat_easter = arabic_date.syriac_names(True)
print(syria_date_fromat_easter) # output ١٦ آب ١٩٨٠
Note:

When you combine Western arabic numerals or western ponctuations with arabic characters they appear messed up if the text direction in the target is set to left to right or dir=ltr in HTML.

In order for the arabic date to appear properly especially, if it uses western arabic numeral the direction of the text in the interface you are using must be right to left. If you insert the date into an HTML element set text direction to rtl. If the text direction in the whole HTML document is set to rtl you should be OK.

<p dir="rtl">16 آب 1980</p>
<p dir="rtl">16 أوت 1980</p>

The result will look like this:

16 آب 1980

16 أوت 1980

A dual date name method

It's very common that two month names are used at the same time to display the date in arabic with the second one put between parentheses, like this:

16 آب (أغسطس) 1980

١٦ آب (أغسطس) ١٩٨٠

To get the Arabic date formatted like this, use the dual_names method:

import datetime
from arabic_datetime import ArabicDate

# Create arabic_date object from a python date object
dt = datetime.date(1980, 8, 16)
arabic_date = ArabicDate(dt)

# Use the dual_names() method to return Arabic date string that shows two names of the month.
# This method takes 3 arguments: 2 strings for the month group names  (the second one
# will be put between parentheses), and a boolean to determine whether to format the
# Arabic date with the Eastern Numerals or not:
dual_date_ro_sy = arabic_date.dual_names("syriac", "roman1", False)
print(dual_date_ro_sy) # output 16 أغسطس (آب) 1980

# If you don't pass the third argument, the default is False. Also you can use
# keyword arguments to make them more readable:
# arabic_date.dual_names(first="syriac", second="roman1", east_nums=False)

# To use Eastern Arabic Numerals, pass True to the function you use as a third argument.
# We will also switch the month names in this example:
dual_date_sy_ro = arabic_date.dual_names(first="syriac", second="roman1", east_nums=True)
print(dual_date_sy_ro) # output ١٦ آب (أغسطس) ١٩٨٠
Accepted values for group names (Look above to see which Arab country uses which names):
"syriac" : For Syriac names
"roman1" : For Roman names (group 1)
"roman2" : For Roman names  (group 2)
"french" : For French names

A method that takes a country code to return the corresponding date format

import datetime
from arabic_datetime import ArabicDate

# Create arabic_date object from a python date object
dt = datetime.date(1980, 8, 16)
arabic_date = ArabicDate(dt)

# Use of by_country_code() method. It takes country_code as a string
# If you don't pass True or False besides the county code string
# the method will return the numeral type that is most common in that country
syria_date_fromat = arabic_date.by_country_code("SY")
algeria_date_fromat_easter = arabic_date.by_country_code("DZ")
print(syriac_date_fromat) # output ١٦ آب ١٩٨٠
print(algeria_date_fromat) # output 16 أوت 1980

# But if you want to force the numeral type, pass as a second argument
# True for eastern numerals and False for western numerals
syria_date_fromat_western = arabic_date.by_country_code("SY", True)
algeria_date_fromat_easter = arabic_date.by_country_code("DZ", False)
print(syriac_date_fromat) # output 16 آب 1980
print(algeria_date_fromat_easter) # output ١٦ أوت ١٩٨٠
List of country codes:
DZ: Algeria
BH: Bahrain
KM: Comoros
DJ: Djibouti
EG: Egypt
IQ: Iraq
JO: Jordan
KW: Kuwait
LB: Lebanon
LY: Libya
MR: Mauritania
MA: Morocco
OM: Oman
PS: Palestine
QA: Qatar
SA: Saudi Arabia
SO: Somalia
SD: Sudan
SY: Syria
TN: Tunisia
AE: United Arab Emirates
YE: Yemen

2. Time

The ArabicTime class has one method that returns arabic time a string using the Eastern Arabic numerals. It takes two parameters: format with default value as "HMS" and separator with default value as ":".

import datetime
from arabic_datetime import ArabicTime
dt = datetime.time(12, 30, 45)
arabic_time = ArabicTime(dt)
print(arabic_time.time("HMS")) # output ١٢:٣٠:٤٥
print(arabic_time.time("HM")) # output ١٢:٣٠
print(arabic_time.time("HM", "/")) # output ١٢/٣٠
Valid format values:
"H": Shows hour only.
"HM": Shows hour and minute.
"HMS": Shows hour, minute and second.
"HMSF": Shows hour, minute, second and microsecond.

Note:

As explained above, make sure that the direction of the text in which the Arabic time is inserted is right to left.

<p dir="rtl">١٢:٣٠:٤٥</p>
<p dir="rtl">الساعة حالياً: ١٢:٣٠:٤٥</p>

The result will look like this:

١٢:٣٠:٤٥

الساعة حالياً: ١٢:٣٠:٤٥

License

MIT license.

Contact

www.khaldevmedia.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arabic_datetime-1.0.0.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

arabic_datetime-1.0.0-py3-none-any.whl (8.6 kB view details)

Uploaded Python 3

File details

Details for the file arabic_datetime-1.0.0.tar.gz.

File metadata

  • Download URL: arabic_datetime-1.0.0.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for arabic_datetime-1.0.0.tar.gz
Algorithm Hash digest
SHA256 4331a270e1106ef829ac89246b8c1be26ef39df942c8781faca32540d0e99565
MD5 4a0cb168cba87fd6f18bd748e1e41fa5
BLAKE2b-256 8b1015e0f02839851d20d7ac0deddf437a653a57480f45f0ce4226bd04f3f40d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arabic_datetime-1.0.0.tar.gz:

Publisher: release.yml on khaldevmedia/arabic-datetime

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arabic_datetime-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for arabic_datetime-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 58250b747ed8972329135b302b79ae074161f1b1860576696a0bf9926f7ce09b
MD5 23be1356f679a2cc57b6045515ec6adb
BLAKE2b-256 4aa05a31e47584608aacc84ec2b5ba177a7437acf98ab37cccd9cc2923636bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for arabic_datetime-1.0.0-py3-none-any.whl:

Publisher: release.yml on khaldevmedia/arabic-datetime

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page