{"id":18601930,"url":"https://github.com/better/cronner","last_synced_at":"2025-04-10T19:30:50.383Z","repository":{"id":62565383,"uuid":"127937893","full_name":"better/cronner","owner":"better","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-07T10:28:58.000Z","size":35,"stargazers_count":21,"open_issues_count":0,"forks_count":3,"subscribers_count":122,"default_branch":"master","last_synced_at":"2025-03-25T03:02:02.875Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/better.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-03T16:37:02.000Z","updated_at":"2024-02-02T00:30:31.000Z","dependencies_parsed_at":"2022-11-03T17:47:39.864Z","dependency_job_id":null,"html_url":"https://github.com/better/cronner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/better%2Fcronner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/better%2Fcronner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/better%2Fcronner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/better%2Fcronner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/better","download_url":"https://codeload.github.com/better/cronner/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248281395,"owners_count":21077423,"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","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":"2024-11-07T02:09:45.341Z","updated_at":"2025-04-10T19:30:50.104Z","avatar_url":"https://github.com/better.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Easily schedule python functions to be run under cron\n\n[![Build Status](https://travis-ci.org/better/cronner.svg?branch=master)](https://travis-ci.org/better/cronner)\n\n## Make an HTTPS GET request to `google.com` every minute\n\nCreate the following file and name it `test.py`.\n\n```python\nimport cronner\nimport random\ntry:\n    from urllib.request import urlopen\nexcept:\n    from urllib import urlopen\n\n@cronner.register('* * * * *')\ndef write_randint():\n    urlopen('https://google.com')\n\ncronner.main()\n```\n\nRun this.\n\n```sh\n$ python test.py gen-cfg | crontab -\n```\n\nThat's it.\n\n## Installation\n\n```sh\n$ pip install cronner\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbetter%2Fcronner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbetter%2Fcronner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbetter%2Fcronner/lists"}