A high-performance, scalable cross-platform framework using Python and React.
Project description
PyWebApp Native 🚀
Lead Architect: Sonu Vishwakarma (sonuportfolio77@gmail.com)
PyWebApp Native is a high-performance cross-platform framework. Build Android, Desktop, and Web applications using Python (for logic) and React (for UI).
Installation
pip install pywebapp-native
Quick Start
# Create a new project
pywebapp init MyApp
cd MyApp
# Launch development server
pywebapp dev
# Build for platforms
pywebapp build-android # Generates Signed APK
pywebapp build-desktop # Generates Windows EXE
pywebapp build-web # Generates static web files
For Developers
Add Python functions that are callable from JavaScript:
# backend/handlers.py
from pywebapp.core import register, get_logger
logger = get_logger("handlers")
@register(description="Add two numbers")
def add(a, b):
return a + b
Call them from React:
import { call } from 'pywebapp-bridge';
const result = await call('add', [5, 7]);
// result = { success: true, result: 12 }
License
Developed by Sonu Vishwakarma. (c) 2026. All rights reserved.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pywebapp_native-2.1.1.tar.gz.
File metadata
- Download URL: pywebapp_native-2.1.1.tar.gz
- Upload date:
- Size: 25.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28b1bb3c859c00d347a5f02aab13cf7eb03f66131d2f9a9fc53af5fe668cea22
|
|
| MD5 |
5019ded48ba8f418ce1714727caaf29a
|
|
| BLAKE2b-256 |
f26d1a47fc1a8681c00e1dd3291855fd16a9e252e259503999dacfdb7dddce5c
|
File details
Details for the file pywebapp_native-2.1.1-py3-none-any.whl.
File metadata
- Download URL: pywebapp_native-2.1.1-py3-none-any.whl
- Upload date:
- Size: 32.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a81cdf2109ece7051cc62617e8b6554e19f5239f35ced1b1b66a40d380e02d03
|
|
| MD5 |
fd46e1a517ab184292967cfba8408efa
|
|
| BLAKE2b-256 |
9e6dee8708ecd6ce8c101132f04f43b72ccb4abe7757f480e45a6a5270b38ad7
|