pyloid 0.20.2.dev2__tar.gz → 0.22.0__tar.gz
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-0.20.2.dev2 → pyloid-0.22.0}/LICENSE +1 -1
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/PKG-INFO +2 -3
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/pyproject.toml +2 -4
- pyloid-0.22.0/src/pyloid/__init__.py +8 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/browser_window.py +1210 -205
- pyloid-0.22.0/src/pyloid/js_api/base.py +29 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/js_api/event_api.py +3 -3
- pyloid-0.22.0/src/pyloid/js_api/window_api.py +258 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/pyloid.py +901 -35
- pyloid-0.22.0/src/pyloid/serve.py +56 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/utils.py +36 -0
- pyloid-0.20.2.dev2/src/pyloid/__init__.py +0 -8
- pyloid-0.20.2.dev2/src/pyloid/builder/__init__.py +0 -81
- pyloid-0.20.2.dev2/src/pyloid/builder/build_config.schema.json +0 -73
- pyloid-0.20.2.dev2/src/pyloid/builder/spec.py +0 -266
- pyloid-0.20.2.dev2/src/pyloid/js_api/window_api.py +0 -255
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/README.md +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/api.py +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/autostart.py +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/custom/titlebar.py +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/filewatcher.py +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/monitor.py +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/thread_pool.py +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/timer.py +0 -0
- {pyloid-0.20.2.dev2 → pyloid-0.22.0}/src/pyloid/tray.py +0 -0
@@ -198,4 +198,4 @@ Apache License
|
|
198
198
|
distributed under the License is distributed on an "AS IS" BASIS,
|
199
199
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
200
|
See the License for the specific language governing permissions and
|
201
|
-
limitations under the License.
|
201
|
+
limitations under the License.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pyloid
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.22.0
|
4
4
|
Summary:
|
5
5
|
Author: aesthetics-of-record
|
6
6
|
Author-email: 111675679+aesthetics-of-record@users.noreply.github.com
|
@@ -11,8 +11,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
13
13
|
Classifier: Programming Language :: Python :: 3.13
|
14
|
-
Requires-Dist:
|
15
|
-
Requires-Dist: pyside6 (>=6.8.1,<7.0.0)
|
14
|
+
Requires-Dist: pyside6 (>=6.8.2.1,<7.0.0.0)
|
16
15
|
Description-Content-Type: text/markdown
|
17
16
|
|
18
17
|
# Pyloid 👋
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "pyloid"
|
3
|
-
version = "0.
|
3
|
+
version = "0.22.0"
|
4
4
|
description = ""
|
5
5
|
authors = ["aesthetics-of-record <111675679+aesthetics-of-record@users.noreply.github.com>"]
|
6
6
|
readme = "README.md"
|
@@ -10,9 +10,7 @@ packages = [
|
|
10
10
|
|
11
11
|
[tool.poetry.dependencies]
|
12
12
|
python = ">=3.9,<3.14"
|
13
|
-
pyside6 = "^6.8.1"
|
14
|
-
pyinstaller = "^6.11.1"
|
15
|
-
|
13
|
+
pyside6 = "^6.8.2.1"
|
16
14
|
|
17
15
|
[build-system]
|
18
16
|
requires = ["poetry-core"]
|
@@ -0,0 +1,8 @@
|
|
1
|
+
from .pyloid import Pyloid
|
2
|
+
from .api import PyloidAPI, Bridge
|
3
|
+
from .utils import get_production_path, is_production
|
4
|
+
from .tray import TrayEvent
|
5
|
+
from .timer import PyloidTimer
|
6
|
+
from .serve import pyloid_serve
|
7
|
+
|
8
|
+
__all__ = ['Pyloid', 'PyloidAPI', 'Bridge', 'get_production_path', 'is_production', 'TrayEvent', 'PyloidTimer', 'serve']
|