{"id":33231751,"url":"https://github.com/ciel-lang/cl-cron","last_synced_at":"2025-11-16T19:01:20.737Z","repository":{"id":47061709,"uuid":"303755723","full_name":"ciel-lang/cl-cron","owner":"ciel-lang","description":"A simple tool that provides cron like facilities directly inside of common lisp.","archived":false,"fork":false,"pushed_at":"2023-09-22T13:27:25.000Z","size":28,"stargazers_count":18,"open_issues_count":2,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-25T11:50:06.156Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Common Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ciel-lang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-10-13T15:58:30.000Z","updated_at":"2025-01-05T09:32:39.000Z","dependencies_parsed_at":"2024-01-31T12:05:01.392Z","dependency_job_id":"ac186096-867d-4721-aee6-e3a0b4616129","html_url":"https://github.com/ciel-lang/cl-cron","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ciel-lang/cl-cron","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ciel-lang%2Fcl-cron","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ciel-lang%2Fcl-cron/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ciel-lang%2Fcl-cron/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ciel-lang%2Fcl-cron/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ciel-lang","download_url":"https://codeload.github.com/ciel-lang/cl-cron/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ciel-lang%2Fcl-cron/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284759739,"owners_count":27058842,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-16T02:00:05.974Z","response_time":65,"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":"2025-11-16T18:00:20.905Z","updated_at":"2025-11-16T19:01:20.732Z","avatar_url":"https://github.com/ciel-lang.png","language":"Common Lisp","readme":"# cl-cron\n\nA simple tool that provides cron like facilities directly inside of common lisp.\n\na fork of https://bitbucket.org/mackram/cl-cron (unavailable)\n\nInstall with Quicklisp:\n\n    (ql:quickload \"cl-cron\")\n\nNote: Quicklisp points to this repository since the release of October, 2021.\n\nExample:\n\nPrint a message every minute.\n\n~~~lisp\n(defun say-hi ()\n  (print \"Hi!\"))\n\n(cl-cron:make-cron-job #'say-hi)\n(cl-cron:start-cron)\n~~~\n\nWait a minute to see output.\n\nStop all jobs with `stop-cron`.\n\n## API\n\n```lisp\n(make-cron-job function-symbol \u0026key (minute :every) (step-min 1) (hour :every) (step-hour 1) (day-of-month :every)\n\n(delete-cron-job cron-key)\n\n(time-to-run-job job)\n\nstart-cron\n\nrestart-cron\n\nstop-cron\n```\n\nExample:\n\n~~~lisp\n(cl-cron:make-cron-job\n            (lambda ()\n              (format t \"Wake Up!~%\"))\n\n            ;; Days of week are numbered from 0,\n            ;; where 0 is Monday.\n            ;; Run every Sunday:\n            :day-of-week 6\n            :hour 10\n            :minute 0\n            ;; hash-key is the name\n            :hash-key :sunday-alarm)\n\n(cl-cron:delete-cron-job\n            :sunday-alarm)\n~~~\n\nhttps://40ants.com/lisp-project-of-the-day/2020/06/0087-cl-cron.html\n\n\u003c!-- http://quickdocs.org/cl-cron/api --\u003e\n\n\n## Changelog\n\n- 2020-10-13: we added a name to the cl-cron thread.\n\nLicence: GPL\n","funding_links":[],"categories":["Python ##","Interfaces to other package managers"],"sub_categories":["Third-party APIs"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fciel-lang%2Fcl-cron","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fciel-lang%2Fcl-cron","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fciel-lang%2Fcl-cron/lists"}