pyloid 0.14.1__tar.gz → 0.14.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.1
2
2
  Name: pyloid
3
- Version: 0.14.1
3
+ Version: 0.14.3
4
4
  Summary:
5
5
  Author: aesthetics-of-record
6
6
  Author-email: 111675679+aesthetics-of-record@users.noreply.github.com
@@ -23,18 +23,22 @@ Pyloid is the Python backend version of Electron and Tauri, designed to simplify
23
23
 
24
24
  With Pyloid, you can leverage the full power of Python in your desktop applications. Its simplicity and flexibility make it the perfect choice for both beginners and experienced developers looking for a Python-focused alternative to Electron or Tauri. It is especially optimized for building AI-powered desktop applications.
25
25
 
26
- ## Key Features 🚀
26
+ ### Key Features 🚀
27
27
 
28
28
  - **Web-based GUI Generation**: Easily build the UI for desktop applications using HTML, CSS, and JavaScript.
29
29
  - **System Tray Icon Support** 🖥️: Implement system tray icons with ease to add various utilities to your app.
30
30
  - **Multi-Window Management**: Create and manage multiple windows effortlessly.
31
31
  - **Bridge API between Python and JavaScript** 🌉: Facilitates smooth communication between Python and JavaScript to integrate various functionalities.
32
- - **Single Instance Application Support**: Prevents duplicate app instances and manages applications with a single instance.
33
- - **Comprehensive Desktop App Features**: Provides a wide range of functions for desktop apps, including monitor management, desktop capture, notifications, shortcuts, and clipboard access.
32
+ - **Single Instance Application / Multi Instance Application Support**: Supports both single and multi instance applications.
33
+ - **Comprehensive Desktop App Features**: Provides a wide range of functions for desktop apps, including monitor management, desktop capture, notifications, shortcuts, auto start, filewatcher and clipboard access.
34
34
  - **Clean and Intuitive Code Structure**: Offers a simple and readable code structure that enhances developer productivity.
35
35
  - **Live UI Development Experience**: Experience real-time UI updates as you modify your code, providing an efficient development workflow.
36
- - **Cross-Platform Support**: Runs on various operating systems, including Windows, macOS, and Linux.
36
+ - **Cross-Platform Support**: Runs on various operating systems, including Windows, macOS, and Linux, Raspberry Pi OS.
37
37
  - **Integration with Various Frontend Libraries**: Supports integration with frontend frameworks like HTML/CSS/JS and React.
38
+ - **Window Customization**: Customize window title bar and draggable region.
39
+
40
+ * **Direct Utilization of PySide6 Features** 🛠️: Leverage almost all features of PySide6 to customize and extend the Pyloid API, offering limitless possibilities.
41
+ * **Detailed Numpy-style Docstrings** 📚: Provide detailed and clear Numpy-style docstrings that greatly enhance the development experience, making it easy to understand and apply the API.
38
42
 
39
43
  ## Documentation 📚
40
44
 
@@ -8,18 +8,22 @@ Pyloid is the Python backend version of Electron and Tauri, designed to simplify
8
8
 
9
9
  With Pyloid, you can leverage the full power of Python in your desktop applications. Its simplicity and flexibility make it the perfect choice for both beginners and experienced developers looking for a Python-focused alternative to Electron or Tauri. It is especially optimized for building AI-powered desktop applications.
10
10
 
11
- ## Key Features 🚀
11
+ ### Key Features 🚀
12
12
 
13
13
  - **Web-based GUI Generation**: Easily build the UI for desktop applications using HTML, CSS, and JavaScript.
14
14
  - **System Tray Icon Support** 🖥️: Implement system tray icons with ease to add various utilities to your app.
15
15
  - **Multi-Window Management**: Create and manage multiple windows effortlessly.
16
16
  - **Bridge API between Python and JavaScript** 🌉: Facilitates smooth communication between Python and JavaScript to integrate various functionalities.
17
- - **Single Instance Application Support**: Prevents duplicate app instances and manages applications with a single instance.
18
- - **Comprehensive Desktop App Features**: Provides a wide range of functions for desktop apps, including monitor management, desktop capture, notifications, shortcuts, and clipboard access.
17
+ - **Single Instance Application / Multi Instance Application Support**: Supports both single and multi instance applications.
18
+ - **Comprehensive Desktop App Features**: Provides a wide range of functions for desktop apps, including monitor management, desktop capture, notifications, shortcuts, auto start, filewatcher and clipboard access.
19
19
  - **Clean and Intuitive Code Structure**: Offers a simple and readable code structure that enhances developer productivity.
20
20
  - **Live UI Development Experience**: Experience real-time UI updates as you modify your code, providing an efficient development workflow.
21
- - **Cross-Platform Support**: Runs on various operating systems, including Windows, macOS, and Linux.
21
+ - **Cross-Platform Support**: Runs on various operating systems, including Windows, macOS, and Linux, Raspberry Pi OS.
22
22
  - **Integration with Various Frontend Libraries**: Supports integration with frontend frameworks like HTML/CSS/JS and React.
23
+ - **Window Customization**: Customize window title bar and draggable region.
24
+
25
+ * **Direct Utilization of PySide6 Features** 🛠️: Leverage almost all features of PySide6 to customize and extend the Pyloid API, offering limitless possibilities.
26
+ * **Detailed Numpy-style Docstrings** 📚: Provide detailed and clear Numpy-style docstrings that greatly enhance the development experience, making it easy to understand and apply the API.
23
27
 
24
28
  ## Documentation 📚
25
29
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyloid"
3
- version = "0.14.1"
3
+ version = "0.14.3"
4
4
  description = ""
5
5
  authors = ["aesthetics-of-record <111675679+aesthetics-of-record@users.noreply.github.com>"]
6
6
  readme = "README.md"
@@ -1,12 +1,13 @@
1
1
  from PySide6.QtCore import QObject, Slot
2
2
 
3
+
3
4
  class PyloidAPI(QObject):
4
5
  """
5
- PyloidAPI 클래스는 PySide6의 QObject를 상속받아 생성된 클래스입니다.
6
- JavaScript와 Python 간의 통신을 가능하게 합니다.
6
+ PyloidAPI class is derived from PySide6's QObject.
7
+ It enables communication between JavaScript and Python.
7
8
 
8
- 사용 예제
9
- --------
9
+ Usage Example
10
+ -------------
10
11
  (Python)
11
12
  ```python
12
13
  from pyloid import Pyloid, PyloidAPI, Bridge
@@ -41,22 +42,24 @@ class PyloidAPI(QObject):
41
42
  ```
42
43
 
43
44
  """
45
+
44
46
  def __init__(self):
45
47
  super().__init__()
46
48
 
49
+
47
50
  def Bridge(*args, **kwargs):
48
51
  """
49
- Bridge 함수는 JavaScript에서 호출할 있는 슬롯을 생성합니다.
52
+ Bridge function creates a slot that can be called from JavaScript.
50
53
 
51
54
  Parameters
52
55
  ----------
53
56
  *args : tuple
54
- 가변 인자 목록입니다.
57
+ Variable length argument list.
55
58
  **kwargs : dict
56
- 키워드 인자 목록입니다.
59
+ Arbitrary keyword arguments.
57
60
 
58
- 사용 예제
59
- --------
61
+ Usage Example
62
+ -------------
60
63
  (Python)
61
64
  ```python
62
65
  from pyloid import Pyloid, PyloidAPI, Bridge
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes