Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Retired in favour of cron_descriptor. (Converts crontab expressions to human-readable descriptions).
Retired in favour of cron_descriptor_
.. cron_descriptor_: https://pypi.org/project/cron_descriptor/
This project is no longer maintained.
Converts crontab expressions to human-readable descriptions.
Use pip:
.. code-block:: bash
pip install pretty-cron
Tested on Python 2.7 and 3.6.
prettify_cron(cron_expression)
Converts the given string cron expression into a pretty, human-readable, English description of what it means. If the string is not a valid cron expression, or it includes features not currently supported, it is returned as-is.
For example:
.. code-block:: python
>>> import pretty_cron
>>> pretty_cron.prettify_cron("0 * * * *")
"At 0 minutes past every hour of every day"
>>> pretty_cron.prettify_cron("0 0 1 1 *")
"At 00:00 on the 1st of January"
>>> pretty_cron.prettify_cron("12 15 * 1 *")
"At 15:12 every day in January"
>>> pretty_cron.prettify_cron("lalala") # Not a cron expression
"lalala"
.. _cron_descriptor: https://pypi.org/project/cron_descriptor/
unicode
on Python 2 for consistency.prettify_cron
function.FAQs
Retired in favour of cron_descriptor. (Converts crontab expressions to human-readable descriptions).
We found that pretty-cron demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.