{"id":41857114,"url":"https://github.com/77axel/webra","last_synced_at":"2026-01-30T16:00:46.657Z","repository":{"id":334397608,"uuid":"1141166239","full_name":"77AXEL/Webra","owner":"77AXEL","description":"A Python library that turns web tech into desktop apps","archived":false,"fork":false,"pushed_at":"2026-01-24T14:30:14.000Z","size":821,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-30T03:20:17.102Z","etag":null,"topics":["cef","cefpython3","chromium","chromium-embedded","cross-platform","desktop-app","desktop-application","electron-alternative","framework","gui","html-css-javascript","hybrid-app","native-app","python","python-framework","python-gui","web-technologies","webra","webview","wxpython"],"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/77AXEL.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-24T11:23:41.000Z","updated_at":"2026-01-24T19:49:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/77AXEL/Webra","commit_stats":null,"previous_names":["77axel/webra"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/77AXEL/Webra","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/77AXEL%2FWebra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/77AXEL%2FWebra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/77AXEL%2FWebra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/77AXEL%2FWebra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/77AXEL","download_url":"https://codeload.github.com/77AXEL/Webra/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/77AXEL%2FWebra/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28914933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T12:13:43.263Z","status":"ssl_error","status_checked_at":"2026-01-30T12:13:22.389Z","response_time":66,"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":["cef","cefpython3","chromium","chromium-embedded","cross-platform","desktop-app","desktop-application","electron-alternative","framework","gui","html-css-javascript","hybrid-app","native-app","python","python-framework","python-gui","web-technologies","webra","webview","wxpython"],"created_at":"2026-01-25T11:02:49.699Z","updated_at":"2026-01-30T16:00:46.596Z","avatar_url":"https://github.com/77AXEL.png","language":"Python","readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"./assets/logo.svg\" alt=\"Logo\" height=200\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Open_Source-Yes-red\" alt=\"Open Source\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Platform-Windows%20|%20macOS%20|%20Linux-blue\" alt=\"Platform Support\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/License-MIT-green\" alt=\"License\"\u003e\n\u003c/p\u003e\n\n---\n\n**Webra** is a Python library that turns web technologies (HTML, CSS, JavaScript) into native desktop applications. It leverages CEF (Chromium Embedded Framework) to render your web content within a customizable window, bridging the gap between web development and desktop app creation.\n\n## Features\n\n- **Web-to-Desktop**: Render any local web application as a desktop app.\n- **Modern UI/UX**: Use modern web frameworks (React, Vue, etc.) or vanilla HTML/CSS/JS.\n- **Python Integration**: Seamlessly call Python functions from JavaScript.\n- **Native Look \u0026 Feel**: Customizable window frames, icons, and taskbar integration.\n- **Standalone Builds**: Compile your application into a single executable file using `webra build`.\n\n## Installation\n\nYou can install Webra directly from GitHub using pip:\n\n```bash\npip install git+https://github.com/77axel/Webra.git\n```\n\n## Usage\n\n### 1. Initialize a Project\n\nCreate a new Webra project with a sample structure:\n\n```bash\nwebra init myapp\ncd myapp\n```\n\nThis creates a `myapp` directory with a basic `main.py` and a `src` folder containing your web assets.\n\n* What the default app looks like:\n\nhttps://github.com/user-attachments/assets/73e8a5cc-f010-4d33-83ce-b54353761d5a\n\n\n### 2. Configure Your App\n\nEdit `main.py` to configure your application window:\n\n```python\nfrom webra import Webra\n\napp = Webra()\napp.configure(\n    title=\"My Awesome App\",\n    size=(1024, 768),\n    src=\"src\",\n    icon=\"src/assets/icon.ico\"  # Optional: Set a custom icon\n)\napp.run()\n```\n\n### 3. Build for Distribution\n\nCompile your application into a standalone executable:\n\n```bash\n# Must be run inside your project directory\nwebra build\n```\n\nThis uses **Nuitka** to compile your Python code and bundle your assets into a single `.exe` file (on Windows), located in the current directory.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F77axel%2Fwebra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F77axel%2Fwebra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F77axel%2Fwebra/lists"}