pyloid 0.21.0.dev1__py3-none-any.whl → 0.22.0.dev2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyloid/__init__.py +2 -2
- pyloid/browser_window.py +1148 -191
- pyloid/js_api/base.py +29 -0
- pyloid/js_api/event_api.py +3 -3
- pyloid/js_api/window_api.py +254 -251
- pyloid/pyloid.py +898 -35
- pyloid/serve.py +56 -0
- pyloid/utils.py +36 -0
- {pyloid-0.21.0.dev1.dist-info → pyloid-0.22.0.dev2.dist-info}/LICENSE +1 -1
- {pyloid-0.21.0.dev1.dist-info → pyloid-0.22.0.dev2.dist-info}/METADATA +1 -2
- pyloid-0.22.0.dev2.dist-info/RECORD +20 -0
- pyloid/builder/__init__.py +0 -81
- pyloid/builder/build_config.schema.json +0 -73
- pyloid/builder/spec.py +0 -266
- pyloid-0.21.0.dev1.dist-info/RECORD +0 -21
- {pyloid-0.21.0.dev1.dist-info → pyloid-0.22.0.dev2.dist-info}/WHEEL +0 -0
pyloid/__init__.py
CHANGED
@@ -3,6 +3,6 @@ from .api import PyloidAPI, Bridge
|
|
3
3
|
from .utils import get_production_path, is_production
|
4
4
|
from .tray import TrayEvent
|
5
5
|
from .timer import PyloidTimer
|
6
|
-
from .
|
6
|
+
from .serve import pyloid_serve
|
7
7
|
|
8
|
-
__all__ = ['Pyloid', 'PyloidAPI', 'Bridge', 'get_production_path', 'is_production', 'TrayEvent', 'PyloidTimer', '
|
8
|
+
__all__ = ['Pyloid', 'PyloidAPI', 'Bridge', 'get_production_path', 'is_production', 'TrayEvent', 'PyloidTimer', 'serve']
|