{"id":49560641,"url":"https://github.com/z4jdev/z4j-rqscheduler","last_synced_at":"2026-05-03T08:11:00.118Z","repository":{"id":353148198,"uuid":"1218189999","full_name":"z4jdev/z4j-rqscheduler","owner":"z4jdev","description":"z4j scheduler adapter for rq-scheduler (Apache 2.0)","archived":false,"fork":false,"pushed_at":"2026-04-30T18:41:17.000Z","size":29,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-30T19:21:21.679Z","etag":null,"topics":["apache-2-0","python","rq","rq-scheduler","scheduler","z4j"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/z4j-rqscheduler/","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-04-22T16:13:28.000Z","updated_at":"2026-04-30T18:41:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/z4jdev/z4j-rqscheduler","commit_stats":null,"previous_names":["z4jdev/z4j-rqscheduler"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/z4jdev/z4j-rqscheduler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rqscheduler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rqscheduler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rqscheduler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rqscheduler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/z4jdev","download_url":"https://codeload.github.com/z4jdev/z4j-rqscheduler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rqscheduler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32562137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["apache-2-0","python","rq","rq-scheduler","scheduler","z4j"],"created_at":"2026-05-03T08:10:58.613Z","updated_at":"2026-05-03T08:11:00.110Z","avatar_url":"https://github.com/z4jdev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# z4j-rqscheduler\n\n[![PyPI version](https://img.shields.io/pypi/v/z4j-rqscheduler.svg?v=1.4.0)](https://pypi.org/project/z4j-rqscheduler/)\n[![Python](https://img.shields.io/pypi/pyversions/z4j-rqscheduler.svg?v=1.4.0)](https://pypi.org/project/z4j-rqscheduler/)\n[![License](https://img.shields.io/pypi/l/z4j-rqscheduler.svg?v=1.4.0)](https://github.com/z4jdev/z4j-rqscheduler/blob/main/LICENSE)\n\nThe rq-scheduler adapter for [z4j](https://z4j.com).\n\nSurfaces rq-scheduler periodic / interval / cron jobs on the\ndashboard's Schedules page, read, create, update, enable, disable,\ntrigger, delete.\n\n## What it ships\n\n| Capability | Notes |\n|---|---|\n| List schedules | every job rq-scheduler currently tracks |\n| Create schedule | interval / cron / one-shot |\n| Update | schedule expression, args, kwargs, queue |\n| Enable / disable | via re-add / cancel |\n| Trigger now | enqueues the task immediately, outside the schedule |\n| Delete | clean removal from the rq-scheduler set |\n| Boot inventory | full snapshot at agent connect; existing schedules show up without editing |\n\n## Install\n\n```bash\npip install z4j-rq z4j-rqscheduler\n```\n\n```python\nfrom rq import Queue\nfrom rq_scheduler import Scheduler\nfrom redis import Redis\nfrom z4j_bare import install_agent\nfrom z4j_rq import RQEngineAdapter\nfrom z4j_rqscheduler import RQSchedulerAdapter\n\nredis = Redis(host=\"localhost\")\nqueue = Queue(connection=redis)\nscheduler = Scheduler(queue=queue, connection=redis)\n\ninstall_agent(\n    engines=[RQEngineAdapter(queues=[queue])],\n    schedulers=[RQSchedulerAdapter(scheduler=scheduler)],\n    brain_url=\"https://brain.example.com\",\n    token=\"z4j_agent_...\",\n    project_id=\"my-project\",\n)\n```\n\n## Pairs with\n\n- [`z4j-rq`](https://github.com/z4jdev/z4j-rq), engine adapter\n\n## Reliability\n\n- No exception from the adapter ever propagates back into rq-scheduler\n  or your job code.\n- Schedule writes to Redis are atomic; if z4j is unreachable,\n  the local Redis write is never affected.\n\n## Documentation\n\nFull docs at [z4j.dev/schedulers/rq-scheduler/](https://z4j.dev/schedulers/rq-scheduler/).\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-rqscheduler/\n- Issues: https://github.com/z4jdev/z4j-rqscheduler/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-rqscheduler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz4jdev%2Fz4j-rqscheduler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz4jdev%2Fz4j-rqscheduler/lists"}