EAScheduler


NameEAScheduler JSON
Version 0.1.11 PyPI version JSON
download
home_pagehttps://github.com/spacemanspiff2007/eascheduler
SummaryEasy async scheduling with a nice interface
upload_time2023-09-11 06:51:54
maintainer
docs_urlNone
authorspaceman_spiff
requires_python>=3.7
license
keywords scheduler asyncio
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # EAScheduler
[![Tests Status](https://github.com/spacemanspiff2007/eascheduler/workflows/Tests/badge.svg)](https://github.com/spacemanspiff2007/eascheduler/actions)
[![Documentation Status](https://readthedocs.org/projects/eascheduler/badge/?version=latest)](https://eascheduler.readthedocs.io/en/latest/?badge=latest)
[![Updates](https://pyup.io/repos/github/spacemanspiff2007/eascheduler/shield.svg)](https://pyup.io/repos/github/spacemanspiff2007/eascheduler/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/eascheduler)

[![PyPI](https://img.shields.io/pypi/v/eascheduler)]((https://pypi.org/project/EAScheduler/))
[![Downloads](https://pepy.tech/badge/eascheduler/month)](https://pepy.tech/project/eascheduler)



_Easy async task scheduling_


Easy Async Scheduler (or EAScheduler) is a lightweight asyncio scheduler with a nice and easy to use interface.

## Documentation
[The documentation can be found at here](https://eascheduler.readthedocs.io)

## Changelog

#### 0.1.11 (2023-09-11)
- Fixed an issue with a possible infinite loop

#### 0.1.10 (2023-08-24)
- Added option to add a callback to the job when the execution time changes

#### 0.1.9 (2023-07-19)
- Fix for days when the sun doesn't rise or set.
  In that case the next date with a sunrise/sunset will be returned.
 
#### 0.1.8 (2022-12-14)
- Fix for OneTimeJob incorrectly showing a remaining time after the execution
- Dependency update

#### 0.1.7 (2022-07-27)
- Added py.typed

#### 0.1.6 (2022-07-27)
- Removed Python 3.7 support
- Fixed setup issues

#### 0.1.5 (2022-02-14)
- Jobs have a remaining function
- CountdownJob has a stop function

#### 0.1.4 (2021-06-01)
- Added option to pause and resume the scheduler
- Jobs don't have to be in the future any more
- Sorted imports with isort

#### 0.1.3 (2021-05-06)
- Fixed a bug where a negative offset/jitter could result in multiple executions

#### 0.1.2 (2021-05-06)
- Fixed a bug where ``.every(None, ...)`` would result in an error

#### 0.1.1 (2021-05-02)
- Implemented a much nicer API and fixed some bugs

#### 0.1.0 (2021-04-21)
- Fixed a race condition
- Added tests

#### 0.0.9 (2021-04-19)
- Fixes for wrong timezone
- Added tests

#### 0.0.8 (2021-04-17)
- Fixes for SunJob, ReoccurringJob
- Added tests

#### 0.0.7 (2021-04-15)
- Fixes for Sunrise/Sunset

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/spacemanspiff2007/eascheduler",
    "name": "EAScheduler",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "scheduler,asyncio",
    "author": "spaceman_spiff",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/26/1e/2cc5609e337f30598f3e706005d3515403106a942cfa9e813a530f91189f/EAScheduler-0.1.11.tar.gz",
    "platform": null,
    "description": "# EAScheduler\n[![Tests Status](https://github.com/spacemanspiff2007/eascheduler/workflows/Tests/badge.svg)](https://github.com/spacemanspiff2007/eascheduler/actions)\n[![Documentation Status](https://readthedocs.org/projects/eascheduler/badge/?version=latest)](https://eascheduler.readthedocs.io/en/latest/?badge=latest)\n[![Updates](https://pyup.io/repos/github/spacemanspiff2007/eascheduler/shield.svg)](https://pyup.io/repos/github/spacemanspiff2007/eascheduler/)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/eascheduler)\n\n[![PyPI](https://img.shields.io/pypi/v/eascheduler)]((https://pypi.org/project/EAScheduler/))\n[![Downloads](https://pepy.tech/badge/eascheduler/month)](https://pepy.tech/project/eascheduler)\n\n\n\n_Easy async task scheduling_\n\n\nEasy Async Scheduler (or EAScheduler) is a lightweight asyncio scheduler with a nice and easy to use interface.\n\n## Documentation\n[The documentation can be found at here](https://eascheduler.readthedocs.io)\n\n## Changelog\n\n#### 0.1.11 (2023-09-11)\n- Fixed an issue with a possible infinite loop\n\n#### 0.1.10 (2023-08-24)\n- Added option to add a callback to the job when the execution time changes\n\n#### 0.1.9 (2023-07-19)\n- Fix for days when the sun doesn't rise or set.\n  In that case the next date with a sunrise/sunset will be returned.\n \n#### 0.1.8 (2022-12-14)\n- Fix for OneTimeJob incorrectly showing a remaining time after the execution\n- Dependency update\n\n#### 0.1.7 (2022-07-27)\n- Added py.typed\n\n#### 0.1.6 (2022-07-27)\n- Removed Python 3.7 support\n- Fixed setup issues\n\n#### 0.1.5 (2022-02-14)\n- Jobs have a remaining function\n- CountdownJob has a stop function\n\n#### 0.1.4 (2021-06-01)\n- Added option to pause and resume the scheduler\n- Jobs don't have to be in the future any more\n- Sorted imports with isort\n\n#### 0.1.3 (2021-05-06)\n- Fixed a bug where a negative offset/jitter could result in multiple executions\n\n#### 0.1.2 (2021-05-06)\n- Fixed a bug where ``.every(None, ...)`` would result in an error\n\n#### 0.1.1 (2021-05-02)\n- Implemented a much nicer API and fixed some bugs\n\n#### 0.1.0 (2021-04-21)\n- Fixed a race condition\n- Added tests\n\n#### 0.0.9 (2021-04-19)\n- Fixes for wrong timezone\n- Added tests\n\n#### 0.0.8 (2021-04-17)\n- Fixes for SunJob, ReoccurringJob\n- Added tests\n\n#### 0.0.7 (2021-04-15)\n- Fixes for Sunrise/Sunset\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Easy async scheduling with a nice interface",
    "version": "0.1.11",
    "project_urls": {
        "Documentation": "https://eascheduler.readthedocs.io/",
        "GitHub": "https://github.com/spacemanspiff2007/eascheduler",
        "Homepage": "https://github.com/spacemanspiff2007/eascheduler"
    },
    "split_keywords": [
        "scheduler",
        "asyncio"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa1d9e718667e3232079d918e6ae01209901f8b835ac61fc7c86c3301f7ada44",
                "md5": "3751cc6472713832ca832797fe904235",
                "sha256": "650984ac45821bd51d8671f1a299c5ce47eae6ee7aea419a57279256199e5409"
            },
            "downloads": -1,
            "filename": "EAScheduler-0.1.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3751cc6472713832ca832797fe904235",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 21560,
            "upload_time": "2023-09-11T06:51:52",
            "upload_time_iso_8601": "2023-09-11T06:51:52.435736Z",
            "url": "https://files.pythonhosted.org/packages/aa/1d/9e718667e3232079d918e6ae01209901f8b835ac61fc7c86c3301f7ada44/EAScheduler-0.1.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "261e2cc5609e337f30598f3e706005d3515403106a942cfa9e813a530f91189f",
                "md5": "ddb8dfb0e4a487f30bfc17cfd85b9b5f",
                "sha256": "ff7edf4b28215f5f239a35877c5934182c771b77d26a0386168d498b51b8d2bd"
            },
            "downloads": -1,
            "filename": "EAScheduler-0.1.11.tar.gz",
            "has_sig": false,
            "md5_digest": "ddb8dfb0e4a487f30bfc17cfd85b9b5f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 16632,
            "upload_time": "2023-09-11T06:51:54",
            "upload_time_iso_8601": "2023-09-11T06:51:54.035995Z",
            "url": "https://files.pythonhosted.org/packages/26/1e/2cc5609e337f30598f3e706005d3515403106a942cfa9e813a530f91189f/EAScheduler-0.1.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-11 06:51:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "spacemanspiff2007",
    "github_project": "eascheduler",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "eascheduler"
}
        
Elapsed time: 0.12792s