{"id":19461503,"url":"https://github.com/zomatree/kine","last_synced_at":"2025-06-28T11:04:39.585Z","repository":{"id":62624430,"uuid":"536903715","full_name":"Zomatree/Kine","owner":"Zomatree","description":"React like agnostic GUI framework for Python","archived":false,"fork":false,"pushed_at":"2024-09-11T04:22:12.000Z","size":547,"stargazers_count":14,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-06-28T11:04:38.086Z","etag":null,"topics":["gui","hacktoberfest","liveview","python","react","server-side-rendering","ssr","web","websocket"],"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/Zomatree.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}},"created_at":"2022-09-15T07:01:43.000Z","updated_at":"2025-05-30T22:09:42.000Z","dependencies_parsed_at":"2024-04-23T16:48:57.744Z","dependency_job_id":"e0639e7e-a700-475f-b8ab-b68a6f854eeb","html_url":"https://github.com/Zomatree/Kine","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Zomatree/Kine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zomatree%2FKine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zomatree%2FKine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zomatree%2FKine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zomatree%2FKine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zomatree","download_url":"https://codeload.github.com/Zomatree/Kine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zomatree%2FKine/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262419748,"owners_count":23308098,"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":["gui","hacktoberfest","liveview","python","react","server-side-rendering","ssr","web","websocket"],"created_at":"2024-11-10T17:42:37.755Z","updated_at":"2025-06-28T11:04:39.563Z","avatar_url":"https://github.com/Zomatree.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kine\n\n![Logo and name](.github/logo_name.png)\n\nKine is a web-based gui framework with support for reactive code and ease of use.\n\nSupports both liveview-style server-side rendering and running client side via WASM.\n\n\n### Example\n\nSee a version of this example running live [here](https://zomatree.github.io/Kine/)\n\n```py\nimport asyncio\n\nfrom kine import *\nfrom kine.renderers.web import *\n\n@component\ndef app(cx: Scope):\n    value = use_state(cx, lambda: 0)\n\n    return div[\n        button(\n            onclick=lambda _: value.modify(lambda v: v + 1)\n        )[\n            \"+1\"\n        ],\n        f\"{value.get()}\",\n        button(\n            onclick=lambda _: value.modify(lambda v: v - 1)\n        )[\n            \"-1\"\n        ],\n    ]\n\nasyncio.run(start_web(app()))\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzomatree%2Fkine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzomatree%2Fkine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzomatree%2Fkine/lists"}