{"id":20249512,"url":"https://github.com/pgiraud/temboard-sched","last_synced_at":"2026-05-30T20:31:05.668Z","repository":{"id":139337605,"uuid":"119545306","full_name":"pgiraud/temboard-sched","owner":"pgiraud","description":"Minimal task scheduler for temBoard","archived":false,"fork":false,"pushed_at":"2018-02-06T15:46:28.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-03T16:14:45.602Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pgiraud.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-30T14:13:28.000Z","updated_at":"2020-05-21T08:21:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"2fbedf44-2f63-488f-91a3-2a9c78e60db6","html_url":"https://github.com/pgiraud/temboard-sched","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pgiraud/temboard-sched","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgiraud%2Ftemboard-sched","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgiraud%2Ftemboard-sched/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgiraud%2Ftemboard-sched/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgiraud%2Ftemboard-sched/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pgiraud","download_url":"https://codeload.github.com/pgiraud/temboard-sched/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgiraud%2Ftemboard-sched/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33709269,"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-05-30T02:00:06.278Z","response_time":92,"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":"2024-11-14T09:54:13.191Z","updated_at":"2026-05-30T20:31:05.641Z","avatar_url":"https://github.com/pgiraud.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# temboard-sched\n\nMinimal task scheduler.\n\n## Installing\n\n``` console\n# python setup.py install\n```\n\n## Usage\n\n``` python\nimport time\n\nfrom temboardsched import taskmanager\n\n\n@taskmanager.worker(pool_size=4)\ndef sleep_worker(duration, message):\n    time.sleep(duration)\n    return 'I say %s' % message\n\n\n@taskmanager.bootstrap()\ndef sleep_bootstrap(context):\n    yield taskmanager.Task(\n                worker_name='sleep_worker',\n                id='sleep_1',\n                options={\n                    'duration': 5,\n                    'message': context.get('message')\n                },\n                redo_interval=10\n          )\n\n\ndef main():\n    # Instanciate \u0026 start the task manager\n    tm = taskmanager.TaskManager()\n    tm.set_context('message', 'Hi!')\n    tm.start()\n\n\nif __name__ == '__main__':\n    main()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgiraud%2Ftemboard-sched","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpgiraud%2Ftemboard-sched","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgiraud%2Ftemboard-sched/lists"}