Created by: dhamodaran-pandiyan
To make the existing curated list more awesome, added a useful module to the list.
What is this Python project?
When working with date and time information in Python, you commonly use the classes date, datetime and/or time from the datetime package. Babel provides functions for locale-specific formatting of those objects in its dates module.
What's the difference between this Python project and similar ones?
Python’s datetime module has different ways to deal with times and dates: naive and timezone-aware datetime objects.
Babel generally recommends you to store all your time in naive datetime objects and treat them as UTC at all times. This simplifies dealing with time a lot because otherwise you can get into the hairy situation where you are dealing with datetime objects of different timezones.
--
Anyone who agrees with this pull request could submit an Approve review to it.