or by running the following
pip install cron-descriptor
from cron_descriptor import get_description, ExpressionDescriptor
print(get_description('23 12 15 * SUN'))
# -> At 12:23 PM, on day 15 of the month, only on Sunday
(relevant code showing day of month + day of week are always formatted)
looking at other implementations of this library the day of week is included even when the day of month is included.
This can be seen by visiting: https://cronexpressiondescriptor.azurewebsites.net/?expression=23+12+15+*+SUN&locale=en (relevant code showing day of month + day of week are always formatted )
or by running the following
pip install cron-descriptor
(relevant code showing day of month + day of week are always formatted)