{"id":13448269,"url":"https://github.com/r0x0r/pywebview","last_synced_at":"2025-05-06T01:25:23.982Z","repository":{"id":23541734,"uuid":"26908699","full_name":"r0x0r/pywebview","owner":"r0x0r","description":"Build GUI for your Python program with JavaScript, HTML, and CSS","archived":false,"fork":false,"pushed_at":"2025-04-10T21:10:31.000Z","size":32368,"stargazers_count":5129,"open_issues_count":15,"forks_count":584,"subscribers_count":64,"default_branch":"master","last_synced_at":"2025-04-24T02:06:13.365Z","etag":null,"topics":["cef","cocoa","gtk","gui","html","javascript","linux","osx","python","qt","webkit","windows"],"latest_commit_sha":null,"homepage":"https://pywebview.flowrl.com","language":"Python","has_issues":true,"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/r0x0r.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing/README.md","funding":".github/funding.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"r0x0r","patreon":"pywebview","open_collective":"pywebview","ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2014-11-20T11:05:46.000Z","updated_at":"2025-04-23T12:50:44.000Z","dependencies_parsed_at":"2024-01-05T10:09:40.754Z","dependency_job_id":"fcaa6ebd-9f75-425b-8aaa-1aa5935ef77d","html_url":"https://github.com/r0x0r/pywebview","commit_stats":{"total_commits":1707,"total_committers":136,"mean_commits":"12.551470588235293","dds":0.6631517281780902,"last_synced_commit":"869c7d1469d5784c22ccd1b59d64ea19d83791cc"},"previous_names":[],"tags_count":73,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r0x0r%2Fpywebview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r0x0r%2Fpywebview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r0x0r%2Fpywebview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r0x0r%2Fpywebview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/r0x0r","download_url":"https://codeload.github.com/r0x0r/pywebview/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250546077,"owners_count":21448260,"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":["cef","cocoa","gtk","gui","html","javascript","linux","osx","python","qt","webkit","windows"],"created_at":"2024-07-31T05:01:40.579Z","updated_at":"2025-04-25T14:23:18.346Z","avatar_url":"https://github.com/r0x0r.png","language":"Python","readme":"\u003cp align='center'\u003e\u003cimg src='logo/logo.png' width=480 alt='pywebview logo'/\u003e\u003c/p\u003e\n\n\u003cp align='center'\u003e\u003ca href=\"https://opencollective.com/pywebview\" alt=\"Financial Contributors on Open Collective\"\u003e\u003cimg src=\"https://opencollective.com/pywebview/all/badge.svg?label=financial+contributors\" /\u003e\u003c/a\u003e \u003cimg src=\"https://badge.fury.io/py/pywebview.svg\" alt=\"PyPI version\" /\u003e \u003cimg src=\"https://img.shields.io/pypi/dm/pywebview\" alt=\"PyPI downloads\" /\u003e \u003ca href=\"https://ci.appveyor.com/project/r0x0r/pywebview\"\u003e\u003cimg src=\"https://ci.appveyor.com/api/projects/status/nu6mbhvbq03wudxd/branch/master?svg=true\" alt=\"Build status\" /\u003e\u003c/a\u003e\n\nhttps://pywebview.flowrl.com\n\u003c/p\u003e\n\n_pywebview_ is a lightweight native webview wrapper that allows to display HTML content in its own native GUI window. It gives you power of web technologies in your desktop application, hiding the fact that GUI is browser based. _pywebview_ ships with a built-in HTTP server, DOM support in Python and window management functionality.\n\n_pywebview_ is available for Windows, macOS, Linux (GTK or QT) and Android. It uses native GUI for creating a web component window: WinForms on Windows, Cocoa on macOS and QT or GTK on Linux. If you choose to freeze your application, _pywebview_ does not bundle a heavy GUI toolkit or web renderer with it keeping the executable size small.\n\n_pywebview_ provides advanced features like window manipulation functionality, event system, built-in HTTP server, native GUI elements like application menu and various dialogs, two way communication between Javascript ↔ Python and DOM support.\n\n_pywebview_ is created by [Roman Sirokov](https://github.com/r0x0r/).\n\n# Getting started\n\n## Install\n\n``` bash\npip install pywebview\n```\n\n_You might need additional libraries.  Refer to the [installation](https://pywebview.flowrl.com/guide/installation) page for details._\n\n## Hello world\n\n``` python\nimport webview\nwebview.create_window('Hello world', 'https://pywebview.flowrl.com/hello')\nwebview.start()\n```\n\nExplore _pywebview_ further by reading [documentation](https://pywebview.flowrl.com/guide), exploring [examples](https://pywebview.flowrl.com/examples) or [contributing](https://pywebview.flowrl.com/contributing). If React is your thing, get started right away with [React boilerplate](https://github.com/r0x0r/pywebview-react-boilerplate).\n\n# Contribution\n\n### Consulting services\n\nIf your company is looking for support with _pywebview_ or needs a hand with full-stack development, the author of _pywebview_ is available for hire. As a VAT-registered EU based professional, I specialize in a wide range of technologies, including JavaScript/TypeScript, React/Vue, Python, GIS, SQL databases, API integration, CI/CD pipelines and cloud solutions. For inquiries about availability and pricing details, reach out to roman@maumau.fi.\n\n### Code Contributors\n\nThis project thrives thanks to the contributions of our community. [[Learn how to contribute](docs/contributing/README.md)].\n\n\u003ca href=\"https://github.com/r0x0r/pywebview/graphs/contributors\"\u003e\u003cimg src=\"https://opencollective.com/pywebview/contributors.svg?width=890\u0026button=false\" /\u003e\u003c/a\u003e\n\n### Financial Contributors\n\nBecome a financial contributor and help us sustain our community. More donation options are outlined on the [Donating](https://pywebview.flowrl.com/contributing/donating.html) page.\n\n[![Github Sponsor](/docs/.vuepress/public/github_sponsor_button.png)](https://github.com/sponsors/r0x0r)\n\n[![Patreon](/docs/.vuepress/public/patreon.png)](https://www.patreon.com/bePatron?u=13226105)\n\n[![Open Collective](/docs/.vuepress/public/opencollective.png)](https://opencollective.com/pywebview/donate)\n","funding_links":["https://github.com/sponsors/r0x0r","https://patreon.com/pywebview","https://opencollective.com/pywebview","https://www.patreon.com/bePatron?u=13226105","https://opencollective.com/pywebview/donate"],"categories":["Python","👓 Alternatives to the [Electron.js](https://electronjs.org) ⚛","图形用户界面","Others","Awesome Python","USER INTERFACE"],"sub_categories":["Python","GUI"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr0x0r%2Fpywebview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr0x0r%2Fpywebview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr0x0r%2Fpywebview/lists"}