{"id":15436322,"url":"https://github.com/zigai/tasker","last_synced_at":"2026-02-12T10:31:49.170Z","repository":{"id":161078683,"uuid":"448960891","full_name":"zigai/tasker","owner":"zigai","description":"Simple task automation framework for Python","archived":false,"fork":false,"pushed_at":"2025-02-14T11:11:16.000Z","size":44,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-30T15:44:58.767Z","etag":null,"topics":["apprise","automation","cron","notifications","python","python-automation","rocketry","scheduling","task-scheduler"],"latest_commit_sha":null,"homepage":"","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/zigai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-01-17T16:07:02.000Z","updated_at":"2025-04-15T15:29:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"fa8df7d5-3432-458b-a1de-18341a42a648","html_url":"https://github.com/zigai/tasker","commit_stats":{"total_commits":46,"total_committers":3,"mean_commits":"15.333333333333334","dds":"0.15217391304347827","last_synced_commit":"9c91b189ddcd9d52d27a70ef031a73f4aa1b2b6e"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/zigai/tasker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigai%2Ftasker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigai%2Ftasker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigai%2Ftasker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigai%2Ftasker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zigai","download_url":"https://codeload.github.com/zigai/tasker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zigai%2Ftasker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29363153,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"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":["apprise","automation","cron","notifications","python","python-automation","rocketry","scheduling","task-scheduler"],"created_at":"2024-10-01T18:49:55.304Z","updated_at":"2026-02-12T10:31:49.152Z","avatar_url":"https://github.com/zigai.png","language":"Python","readme":"# Tasker\n[![PyPI version](https://badge.fury.io/py/tasker-python.svg)](https://badge.fury.io/py/tasker-python)\n![Supported versions](https://img.shields.io/badge/python-3.10+-blue.svg)\n[![Downloads](https://static.pepy.tech/badge/tasker-python)](https://pepy.tech/project/tasker-python)\n[![license](https://img.shields.io/github/license/zigai/tasker.svg)](https://github.com/zigai/tasker/blob/main/LICENSE)\n\nSimple task automation framework for Python, integrating [Rocketry](https://github.com/Miksus/rocketry) for advanced scheduling and [Apprise](https://github.com/caronc/apprise) for multi-platform notifications. Wraps Python functions and shell commands into easily manageable and schedulable units.\n\n## Installation\n#### From PyPi\n```\npip install tasker-python\n```\n#### From source\n```\npip install git+https://github.com/zigai/tasker.git\n```\n## Example\n```python\nfrom tasker import Channel, CommandLineTask\n\ntask = CommandLineTask(\n    name=\"hello-world\",\n    command=\"echo 'Hello World!'\",\n    notification_channels=[\n        Channel(\"discord://...\", events=[\"start\", \"success\", \"info\", \"fail\"]), \n    ],\n    stdout=True, # display stdout in notifications\n)\n\ntask.exec() # run once\n\nfrom tasker.scheduler import TaskScheduler, every\nscheduler = TaskScheduler()\nscheduler.schedule_task(task, every(\"10 seconds\")) # run every 10 seconds\nscheduler.run()\n\n```\n\n## License\n[MIT License](https://github.com/zigai/tasker/blob/master/LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzigai%2Ftasker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzigai%2Ftasker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzigai%2Ftasker/lists"}