Launch URL with native window in WebView mode. Multiple backend implementations are supported.
Project description
PyApp Window
A general-purpose native window launcher for a given url.
Install
pip install pyapp-window
Usage
Use in terminal:
py -m pyapp_window -h
py -m pyapp_window http://localhost:3001
Use in script:
import sys
import pyapp_window
from lk_utils import run_cmd_args
# get a popen object
port = 3001
proc = run_cmd_args(
sys.executable, '-m', 'streamlit', 'run', your_target_script,
'--browser.gatherUsageStats', 'false',
'--global.developmentMode', 'false',
'--server.headless', 'true',
'--server.port', port,
blocking=False,
verbose=True,
)
pyapp_window.launch(
'Example App',
url=f'http://localhost:{port}',
copilot_backend=proc,
size=(800, 600),
)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file pyapp_window-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: pyapp_window-2.1.0-py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.13.0 Windows/11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a598c800f9ac6b6480cac0539d8714ca23607c6a5e574003cb67fb738501708d |
|
MD5 | 1055f935bade6d4e53ec5898013a2406 |
|
BLAKE2b-256 | b4449e99192eb1433c31b923139b6caf8f036e68e8672513619ac8e03af1e5fe |