cronsim


Namecronsim JSON
Version 2.5 PyPI version JSON
download
home_pagehttps://github.com/cuu508/cronsim
SummaryCron expression parser and evaluator
upload_time2023-07-01 07:49:44
maintainer
docs_urlNone
authorPēteris Caune
requires_python>= 3.8
licenseBSD
keywords cron cronjob crontab schedule
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CronSim

[![Tests](https://github.com/cuu508/cronsim/actions/workflows/pytest.yml/badge.svg)](https://github.com/cuu508/cronsim/actions/workflows/pytest.yml)

Cron Sim(ulator), a cron expression parser and evaluator. Works with Python 3.8+.
CronSim is written for and being used in
[Healthchecks](https://github.com/healthchecks/healthchecks/)
(a cron job monitoring service).

Development priorities:

* Correctness. CronSim tries to match Debian's cron as closely as possible,
  including its quirky behaviour during DST transitions.
* Readability. Prefer simple over clever.
* Minimalism. Don't implement features that Healthchecks will not use
  (for example, iteration in reverse, or the seconds field in cron expressions).

## Installation

```
pip install cronsim
```

## Usage

```python
from datetime import datetime
from cronsim import CronSim

it = CronSim("0 0 * 2 MON#5", datetime.now())
for x in range(0, 10):
    print(next(it))
```

Produces:

```
2044-02-29 00:00:00
2072-02-29 00:00:00
2112-02-29 00:00:00
2140-02-29 00:00:00
2168-02-29 00:00:00
2196-02-29 00:00:00
2208-02-29 00:00:00
2236-02-29 00:00:00
2264-02-29 00:00:00
2292-02-29 00:00:00
```

If CronSim receives an invalid cron expression, it raises `cronsim.CronSimError`:

```python
from datetime import datetime
from cronsim import CronSim

CronSim("123 * * * *", datetime.now())
```

Produces:

```
cronsim.cronsim.CronSimError: Bad minute
```

If CronSim cannot find a matching datetime in the next 50 years from the start
date or from the previous match, it stops iteration by raising `StopIteration`:

```python
from datetime import datetime
from cronsim import CronSim

# Every minute of 1st and 21st of month,
# if it is also the *last Monday* of the month:
it = CronSim("* * */20 * 1L", datetime.now())
print(next(it))
```

Produces:

```
StopIteration
```

## CronSim Works With zoneinfo

CronSim starting from version 2.0 is designed to work with timezones provided by
the zoneinfo module.

A previous version, CronSim 1.0, was designed for pytz and relied on its
following non-standard features:

* the non-standard `is_dst` flag in the `localize()` method
* the `pytz.AmbiguousTimeError` and `pytz.NonExistentTimeError` exceptions
* the `normalize()` method

## Supported Cron Expression Features

CronSim aims to match [Debian's cron implementation](https://salsa.debian.org/debian/cron/-/tree/master/)
(which itself is based on Paul Vixie's cron, with modifications). If CronSim evaluates
an expression differently from Debian's cron, that's a bug.

CronSim is open to adding support for non-standard syntax features, as long as
they don't conflict or interfere with the standard syntax.

## DST Transitions

CronSim handles Daylight Saving Time transitions the same as
Debian's cron. Debian has special handling for jobs with a granularity
greater than one hour:

```
Local time changes of less than three hours, such as  those  caused  by
the  start or end of Daylight Saving Time, are handled specially.  This
only applies to jobs that run at a specific time and jobs that are  run
with  a    granularity  greater  than  one hour.  Jobs that run more fre-
quently are scheduled normally.

If time has moved forward, those jobs that would have run in the inter-
val that has been skipped will be run immediately.  Conversely, if time
has moved backward, care is taken to avoid running jobs twice.
```

See test cases in `test_cronsim.py`, `TestDstTransitions` class
for examples of this special handling.

## Cron Expression Feature Matrix

| Feature                              | Debian | Quartz | croniter | cronsim |
| ------------------------------------ | :----: | :----: | :------: | :-----: |
| Seconds in the 6th field             | No     | Yes    | Yes      | No      |
| "L" as the day-of-month              | No     | Yes    | Yes      | Yes     |
| "LW" as the day-of-month             | No     | Yes    | No       | Yes     |
| "L" in the day-of-week field         | No     | Yes    | No       | Yes     |
| Nth weekday of month                 | No     | Yes    | Yes      | Yes     |


**Seconds in the 6th field**: an optional sixth field specifying seconds.
Supports the same syntax features as the minutes field. Quartz Scheduler
expects seconds in the first field, croniter expects seconds in the last field.

Quartz example: `*/15 * * * * *` (every 15 seconds).

**"L" as the day-of-month**: support for the "L" special character in the
day-of-month field. Interpreted as "the last day of the month".

Example: `0 0 L * *` (at the midnight of the last day of every month).

**"LW" as the day-of-month**: support for the "LW" special value in the
day-of-month field. Interpreted as "the last weekday (Mon-Fri) of the month".

Example: `0 0 LW * *` (at the midnight of the last weekday of every month).

**"L" in the day-of-week field**: support for the "{weekday}L" syntax.
For example, "5L" means "the last Friday of the month".

Example: `0 0 * * 6L` (at the midnight of the last Saturday of every month).

**Nth weekday of month**: support for "{weekday}#{nth}" syntax.
For example, "MON#1" means "first Monday of the month", "MON#2" means "second Monday
of the month".

Example: `0 0 * * MON#1` (at midnight of the first monday of every month).

## The `explain()` Method

Starting from version 2.4, the CronSim objects have an `explain()` method
which generates a text description of the supplied cron expression.

```python
from datetime import datetime
from cronsim import CronSim

expr = CronSim("*/5 9-17 * * *", datetime.now())
print(expr.explain())
```

Outputs:

```
Every fifth minute from 09:00 through 17:59
```

The text descriptions are available in English only. The text descriptions
use the 24-hour time format ("23:00" instead of "11:00 PM").

For examples of generated descriptions see `tests/test_explain.py`.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cuu508/cronsim",
    "name": "cronsim",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">= 3.8",
    "maintainer_email": "",
    "keywords": "cron,cronjob,crontab,schedule",
    "author": "P\u0113teris Caune",
    "author_email": "cuu508@monkeyseemonkeydo.lv",
    "download_url": "https://files.pythonhosted.org/packages/05/b7/6f1f1e50d98ad5c7e4a4c9710ab6cadf7e785ba4013215ccf696cd99e708/cronsim-2.5.tar.gz",
    "platform": "any",
    "description": "# CronSim\n\n[![Tests](https://github.com/cuu508/cronsim/actions/workflows/pytest.yml/badge.svg)](https://github.com/cuu508/cronsim/actions/workflows/pytest.yml)\n\nCron Sim(ulator), a cron expression parser and evaluator. Works with Python 3.8+.\nCronSim is written for and being used in\n[Healthchecks](https://github.com/healthchecks/healthchecks/)\n(a cron job monitoring service).\n\nDevelopment priorities:\n\n* Correctness. CronSim tries to match Debian's cron as closely as possible,\n  including its quirky behaviour during DST transitions.\n* Readability. Prefer simple over clever.\n* Minimalism. Don't implement features that Healthchecks will not use\n  (for example, iteration in reverse, or the seconds field in cron expressions).\n\n## Installation\n\n```\npip install cronsim\n```\n\n## Usage\n\n```python\nfrom datetime import datetime\nfrom cronsim import CronSim\n\nit = CronSim(\"0 0 * 2 MON#5\", datetime.now())\nfor x in range(0, 10):\n    print(next(it))\n```\n\nProduces:\n\n```\n2044-02-29 00:00:00\n2072-02-29 00:00:00\n2112-02-29 00:00:00\n2140-02-29 00:00:00\n2168-02-29 00:00:00\n2196-02-29 00:00:00\n2208-02-29 00:00:00\n2236-02-29 00:00:00\n2264-02-29 00:00:00\n2292-02-29 00:00:00\n```\n\nIf CronSim receives an invalid cron expression, it raises `cronsim.CronSimError`:\n\n```python\nfrom datetime import datetime\nfrom cronsim import CronSim\n\nCronSim(\"123 * * * *\", datetime.now())\n```\n\nProduces:\n\n```\ncronsim.cronsim.CronSimError: Bad minute\n```\n\nIf CronSim cannot find a matching datetime in the next 50 years from the start\ndate or from the previous match, it stops iteration by raising `StopIteration`:\n\n```python\nfrom datetime import datetime\nfrom cronsim import CronSim\n\n# Every minute of 1st and 21st of month,\n# if it is also the *last Monday* of the month:\nit = CronSim(\"* * */20 * 1L\", datetime.now())\nprint(next(it))\n```\n\nProduces:\n\n```\nStopIteration\n```\n\n## CronSim Works With zoneinfo\n\nCronSim starting from version 2.0 is designed to work with timezones provided by\nthe zoneinfo module.\n\nA previous version, CronSim 1.0, was designed for pytz and relied on its\nfollowing non-standard features:\n\n* the non-standard `is_dst` flag in the `localize()` method\n* the `pytz.AmbiguousTimeError` and `pytz.NonExistentTimeError` exceptions\n* the `normalize()` method\n\n## Supported Cron Expression Features\n\nCronSim aims to match [Debian's cron implementation](https://salsa.debian.org/debian/cron/-/tree/master/)\n(which itself is based on Paul Vixie's cron, with modifications). If CronSim evaluates\nan expression differently from Debian's cron, that's a bug.\n\nCronSim is open to adding support for non-standard syntax features, as long as\nthey don't conflict or interfere with the standard syntax.\n\n## DST Transitions\n\nCronSim handles Daylight Saving Time transitions the same as\nDebian's cron. Debian has special handling for jobs with a granularity\ngreater than one hour:\n\n```\nLocal time changes of less than three hours, such as  those  caused  by\nthe  start or end of Daylight Saving Time, are handled specially.  This\nonly applies to jobs that run at a specific time and jobs that are  run\nwith  a    granularity  greater  than  one hour.  Jobs that run more fre-\nquently are scheduled normally.\n\nIf time has moved forward, those jobs that would have run in the inter-\nval that has been skipped will be run immediately.  Conversely, if time\nhas moved backward, care is taken to avoid running jobs twice.\n```\n\nSee test cases in `test_cronsim.py`, `TestDstTransitions` class\nfor examples of this special handling.\n\n## Cron Expression Feature Matrix\n\n| Feature                              | Debian | Quartz | croniter | cronsim |\n| ------------------------------------ | :----: | :----: | :------: | :-----: |\n| Seconds in the 6th field             | No     | Yes    | Yes      | No      |\n| \"L\" as the day-of-month              | No     | Yes    | Yes      | Yes     |\n| \"LW\" as the day-of-month             | No     | Yes    | No       | Yes     |\n| \"L\" in the day-of-week field         | No     | Yes    | No       | Yes     |\n| Nth weekday of month                 | No     | Yes    | Yes      | Yes     |\n\n\n**Seconds in the 6th field**: an optional sixth field specifying seconds.\nSupports the same syntax features as the minutes field. Quartz Scheduler\nexpects seconds in the first field, croniter expects seconds in the last field.\n\nQuartz example: `*/15 * * * * *` (every 15 seconds).\n\n**\"L\" as the day-of-month**: support for the \"L\" special character in the\nday-of-month field. Interpreted as \"the last day of the month\".\n\nExample: `0 0 L * *` (at the midnight of the last day of every month).\n\n**\"LW\" as the day-of-month**: support for the \"LW\" special value in the\nday-of-month field. Interpreted as \"the last weekday (Mon-Fri) of the month\".\n\nExample: `0 0 LW * *` (at the midnight of the last weekday of every month).\n\n**\"L\" in the day-of-week field**: support for the \"{weekday}L\" syntax.\nFor example, \"5L\" means \"the last Friday of the month\".\n\nExample: `0 0 * * 6L` (at the midnight of the last Saturday of every month).\n\n**Nth weekday of month**: support for \"{weekday}#{nth}\" syntax.\nFor example, \"MON#1\" means \"first Monday of the month\", \"MON#2\" means \"second Monday\nof the month\".\n\nExample: `0 0 * * MON#1` (at midnight of the first monday of every month).\n\n## The `explain()` Method\n\nStarting from version 2.4, the CronSim objects have an `explain()` method\nwhich generates a text description of the supplied cron expression.\n\n```python\nfrom datetime import datetime\nfrom cronsim import CronSim\n\nexpr = CronSim(\"*/5 9-17 * * *\", datetime.now())\nprint(expr.explain())\n```\n\nOutputs:\n\n```\nEvery fifth minute from 09:00 through 17:59\n```\n\nThe text descriptions are available in English only. The text descriptions\nuse the 24-hour time format (\"23:00\" instead of \"11:00 PM\").\n\nFor examples of generated descriptions see `tests/test_explain.py`.\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Cron expression parser and evaluator",
    "version": "2.5",
    "project_urls": {
        "Changelog": "https://github.com/cuu508/cronsim/blob/main/CHANGELOG.md",
        "Homepage": "https://github.com/cuu508/cronsim"
    },
    "split_keywords": [
        "cron",
        "cronjob",
        "crontab",
        "schedule"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05b76f1f1e50d98ad5c7e4a4c9710ab6cadf7e785ba4013215ccf696cd99e708",
                "md5": "1866d71e2f99c23fb55d2d51b6dd0bdb",
                "sha256": "153cf0219dcc1a0ca9e71a836afdb60796537d8c521c686c7a731348375733bf"
            },
            "downloads": -1,
            "filename": "cronsim-2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "1866d71e2f99c23fb55d2d51b6dd0bdb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">= 3.8",
            "size": 14793,
            "upload_time": "2023-07-01T07:49:44",
            "upload_time_iso_8601": "2023-07-01T07:49:44.878769Z",
            "url": "https://files.pythonhosted.org/packages/05/b7/6f1f1e50d98ad5c7e4a4c9710ab6cadf7e785ba4013215ccf696cd99e708/cronsim-2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-01 07:49:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cuu508",
    "github_project": "cronsim",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cronsim"
}
        
Elapsed time: 0.08363s