{"id":50666987,"url":"https://github.com/z4jdev/z4j-apscheduler","last_synced_at":"2026-06-08T07:07:01.632Z","repository":{"id":361049189,"uuid":"1228454347","full_name":"z4jdev/z4j-apscheduler","owner":"z4jdev","description":"z4j scheduler adapter for APScheduler (Apache 2.0)","archived":false,"fork":false,"pushed_at":"2026-05-13T14:18:11.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-29T03:05:26.491Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pypi.org/project/z4j-apscheduler/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/z4jdev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-04T03:12:29.000Z","updated_at":"2026-05-13T14:56:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/z4jdev/z4j-apscheduler","commit_stats":null,"previous_names":["z4jdev/z4j-apscheduler"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/z4jdev/z4j-apscheduler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-apscheduler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-apscheduler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-apscheduler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-apscheduler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/z4jdev","download_url":"https://codeload.github.com/z4jdev/z4j-apscheduler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-apscheduler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34051808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-08T07:06:08.275Z","updated_at":"2026-06-08T07:07:01.623Z","avatar_url":"https://github.com/z4jdev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# z4j-apscheduler\n\n[![PyPI version](https://img.shields.io/pypi/v/z4j-apscheduler.svg?v=1.6.7)](https://pypi.org/project/z4j-apscheduler/)\n[![Python](https://img.shields.io/pypi/pyversions/z4j-apscheduler.svg?v=1.6.7)](https://pypi.org/project/z4j-apscheduler/)\n[![License](https://img.shields.io/pypi/l/z4j-apscheduler.svg?v=1.6.7)](https://github.com/z4jdev/z4j-apscheduler/blob/main/LICENSE)\n\nThe APScheduler adapter for [z4j](https://z4j.com).\n\nSurfaces APScheduler jobs on the dashboard's Schedules page, read,\ncreate, update, enable, disable, trigger, delete. Engine-agnostic:\nworks alongside any z4j engine adapter, or as a standalone\nscheduler in projects without a queue engine.\n\n## Compatibility\n\n- APScheduler 3.8+ and \u003c4 (capped below the APScheduler 4.x rewrite)\n- Python 3.10+\n\nFull per-adapter matrix at \u003chttps://z4j.dev/reference/compatibility/\u003e.\n\n## What it ships\n\n| Capability | Notes |\n|---|---|\n| List schedules | every job APScheduler currently tracks |\n| Create schedule | date / interval / cron triggers |\n| Update | trigger spec, args, kwargs, paused flag |\n| Enable / disable | via APScheduler's pause / resume |\n| Trigger now | runs the job immediately, outside the schedule |\n| Delete | clean removal from the jobstore |\n| Boot inventory | full snapshot at agent connect; existing jobs show up without editing |\n\nSupports every APScheduler jobstore: in-memory, SQLAlchemy\n(Postgres / SQLite / MySQL), MongoDB, Redis.\n\n## Install\n\n```bash\npip install z4j-apscheduler\n```\n\n```python\nfrom apscheduler.schedulers.background import BackgroundScheduler\nfrom apscheduler.triggers.cron import CronTrigger\nfrom z4j_bare import install_agent\nfrom z4j_apscheduler import APSchedulerAdapter\n\nscheduler = BackgroundScheduler()\nscheduler.add_job(my_func, CronTrigger(minute=\"*/5\"), id=\"cleanup\")\nscheduler.start()\n\ninstall_agent(\n    engines=[],  # APScheduler runs jobs in-process; no separate engine\n    schedulers=[APSchedulerAdapter(scheduler=scheduler)],\n    brain_url=\"https://brain.example.com\",\n    token=\"z4j_agent_...\",\n    project_id=\"my-project\",\n)\n```\n\n## Reliability\n\n- No exception from the adapter ever propagates back into APScheduler\n  or your job code.\n- Jobstore writes use APScheduler's normal transactional semantics; the\n  adapter only observes and surfaces, it does not rewrite the store.\n\n## Documentation\n\nFull docs at [z4j.dev/schedulers/apscheduler/](https://z4j.dev/schedulers/apscheduler/).\n\n## License\n\nApache-2.0, see [LICENSE](LICENSE).\n\n## Links\n\n- Homepage: https://z4j.com\n- Documentation: https://z4j.dev\n- PyPI: https://pypi.org/project/z4j-apscheduler/\n- Issues: https://github.com/z4jdev/z4j-apscheduler/issues\n- Changelog: [CHANGELOG.md](CHANGELOG.md)\n- Security: security@z4j.com (see [SECURITY.md](SECURITY.md))\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz4jdev%2Fz4j-apscheduler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz4jdev%2Fz4j-apscheduler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz4jdev%2Fz4j-apscheduler/lists"}