{"id":18654915,"url":"https://github.com/mynameisvinn/kick","last_synced_at":"2026-06-23T12:31:28.740Z","repository":{"id":40959633,"uuid":"237512111","full_name":"mynameisvinn/Kick","owner":"mynameisvinn","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-25T11:00:16.000Z","size":108,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-17T23:38:56.881Z","etag":null,"topics":["remote-execution","remote-machine"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mynameisvinn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-01-31T20:39:06.000Z","updated_at":"2021-01-12T17:24:17.000Z","dependencies_parsed_at":"2025-02-18T11:51:28.907Z","dependency_job_id":"e84be074-b3d0-4d76-9f61-1d9cd9fb1d97","html_url":"https://github.com/mynameisvinn/Kick","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mynameisvinn/Kick","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mynameisvinn%2FKick","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mynameisvinn%2FKick/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mynameisvinn%2FKick/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mynameisvinn%2FKick/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mynameisvinn","download_url":"https://codeload.github.com/mynameisvinn/Kick/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mynameisvinn%2FKick/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34688014,"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-06-23T02:00:07.161Z","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":["remote-execution","remote-machine"],"created_at":"2024-11-07T07:17:01.825Z","updated_at":"2026-06-23T12:31:28.721Z","avatar_url":"https://github.com/mynameisvinn.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kick\nRemote code execution with decorators.\n\n## Install\nClone this repo and then do `python setup.py install`.\n```bash\ngit clone https://github.com/mynameisvinn/Kick\ncd Kick\npython setup.py install  # puts kick.ini in home folder\n```\n\n## Example\nThis code snippet executes locally. \n```python\ndef foobar():\n    res = 0\n    for i in range(3):\n        res += i\n    print(res)\n\nfoobar()  # foobar() evaluated on local machine and prints 3\n```\n\nWe can evaluate `foobar()` on a remote machine (eg ec2) with a single decorator `@kick`. no `ssh`, `scp`, or moving bytes back and forth.\n```python\nfrom kick import kick\n\n@kick\ndef foobar():\n    res = 0\n    for i in range(3):\n        res += i\n    print(res)\n\nfoobar()  # foobar() remote execution\n```\nMore examples can be found [here](https://github.com/mynameisvinn/Kick/tree/master/examples)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmynameisvinn%2Fkick","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmynameisvinn%2Fkick","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmynameisvinn%2Fkick/lists"}