Skip to content

Commit 0156418

Browse files
authored
Merge pull request #113 from Integration-Automation/dev
Dev
2 parents ebd547c + e1d98c9 commit 0156418

41 files changed

Lines changed: 357 additions & 130 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,5 @@ dmypy.json
149149
.jeditor
150150
**/.jeditor
151151
**/user_setting.*
152-
bing_cookies.*
152+
bing_cookies.*
153+
**/output

dev.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "pybreeze_dev"
9-
version = "1.0.5"
9+
version = "1.0.10"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
13-
description = "AutomationEditor for multi automation"
13+
description = "IDE for multi automation"
1414
requires-python = ">=3.10"
1515
license-files = ["LICENSE"]
1616
dependencies = [
17-
"je_editor_dev", "je_auto_control", "je_web_runner",
17+
"je-editor", "je_auto_control", "je_web_runner",
1818
"je_load_density", "je_api_testka", "je-mail-thunder",
19-
"automation-file", "PySide6==6.10.2", "test_pioneer", "paramiko"
19+
"automation-file", "PySide6==6.11.0", "test_pioneer", "paramiko",
20+
"jupyterlab",
2021
]
2122
classifiers = [
2223
"Programming Language :: Python :: 3.10",

exe/auto_py_to_exe_setting.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
{
99
"optionDest": "filenames",
10-
"value": "C:/CodeWorkspace/Python/AutomationIDE/exe/start_automation_editor.py"
10+
"value": "C:/CodeWorkspace/Python/PyBreeze/exe/start_pybreeze.py"
1111
},
1212
{
1313
"optionDest": "onefile",
@@ -19,11 +19,11 @@
1919
},
2020
{
2121
"optionDest": "icon_file",
22-
"value": "C:/CodeWorkspace/Python/AutomationIDE/exe/automation_ide.ico"
22+
"value": "C:/CodeWorkspace/Python/PyBreeze/exe/pybreeze_icon.ico"
2323
},
2424
{
2525
"optionDest": "name",
26-
"value": "AutomationIDE"
26+
"value": "PyBreeze"
2727
},
2828
{
2929
"optionDest": "clean_build",
@@ -59,23 +59,23 @@
5959
},
6060
{
6161
"optionDest": "datas",
62-
"value": "C:/CodeWorkspace/Python/AutomationIDE/.venv/Lib/site-packages/ipython-9.8.0.dist-info;ipython-9.8.0.dist-info/"
62+
"value": "C:/CodeWorkspace/Python/PyBreeze/.venv/Lib/site-packages/ipython-9.11.0.dist-info;ipython-9.11.0.dist-info/"
6363
},
6464
{
6565
"optionDest": "datas",
66-
"value": "C:/CodeWorkspace/Python/AutomationIDE/.venv/Lib/site-packages/IPython;.IPython/"
66+
"value": "C:/CodeWorkspace/Python/PyBreeze/.venv/Lib/site-packages/IPython;.IPython/"
6767
},
6868
{
6969
"optionDest": "datas",
70-
"value": "C:/CodeWorkspace/Python/AutomationIDE/.venv/Lib/site-packages/ipykernel-7.1.0.dist-info;ipykernel-7.1.0.dist-info/"
70+
"value": "C:/CodeWorkspace/Python/PyBreeze/.venv/Lib/site-packages/ipykernel-7.2.0.dist-info;ipykernel-7.2.0.dist-info/"
7171
},
7272
{
7373
"optionDest": "datas",
74-
"value": "C:/CodeWorkspace/Python/AutomationIDE/.venv/Lib/site-packages/ipykernel;ipykernel/"
74+
"value": "C:/CodeWorkspace/Python/PyBreeze/.venv/Lib/site-packages/ipykernel;ipykernel/"
7575
},
7676
{
7777
"optionDest": "pathex",
78-
"value": "C:/CodeWorkspace/Python/AutomationIDE/.venv"
78+
"value": "C:/CodeWorkspace/Python/PyBreeze/.venv"
7979
}
8080
],
8181
"nonPyinstallerOptions": {

pybreeze/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from pybreeze.pybreeze_ui.editor_main.main_ui import AutomationEditor
1+
from pybreeze.pybreeze_ui.editor_main.main_ui import PyBreezeMainWindow
22
from pybreeze.pybreeze_ui.editor_main.main_ui import EDITOR_EXTEND_TAB
33
from pybreeze.pybreeze_ui.editor_main.main_ui import start_editor
44

55
__all__ = [
6-
"start_editor", "AutomationEditor", "EDITOR_EXTEND_TAB"
6+
"start_editor", "PyBreezeMainWindow", "EDITOR_EXTEND_TAB"
77
]

pybreeze/extend/process_executor/api_testka/api_testka_process.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@
55
from pybreeze.extend.process_executor.process_executor_utils import build_process
66

77
if TYPE_CHECKING:
8-
from pybreeze.pybreeze_ui.editor_main.main_ui import AutomationEditor
8+
from pybreeze.pybreeze_ui.editor_main.main_ui import PyBreezeMainWindow
99
import sys
1010

1111
from pybreeze.utils.file_process.get_dir_file_list import ask_and_get_dir_files_as_list
1212

1313

1414
def call_api_testka(
15-
main_window: AutomationEditor,
15+
main_window: PyBreezeMainWindow,
1616
exec_str: Union[str, None] = None,
1717
program_buffer: int = 1024000
1818
):
1919
build_process(main_window, "je_api_testka", exec_str, False, program_buffer)
2020

2121

2222
def call_api_testka_with_send(
23-
main_window: AutomationEditor,
23+
main_window: PyBreezeMainWindow,
2424
exec_str: Union[str, None] = None,
2525
program_buffer: int = 1024000
2626
):
2727
build_process(main_window, "je_api_testka", exec_str, True, program_buffer)
2828

2929

3030
def call_api_testka_multi_file(
31-
main_window: AutomationEditor,
31+
main_window: PyBreezeMainWindow,
3232
program_buffer: int = 1024000
3333
):
3434
try:
@@ -47,7 +47,7 @@ def call_api_testka_multi_file(
4747

4848

4949
def call_api_testka_multi_file_and_send(
50-
main_window: AutomationEditor,
50+
main_window: PyBreezeMainWindow,
5151
program_buffer: int = 1024000
5252
):
5353
try:

pybreeze/extend/process_executor/auto_control/auto_control_process.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@
55
from pybreeze.extend.process_executor.process_executor_utils import build_process
66

77
if TYPE_CHECKING:
8-
from pybreeze.pybreeze_ui.editor_main.main_ui import AutomationEditor
8+
from pybreeze.pybreeze_ui.editor_main.main_ui import PyBreezeMainWindow
99
import sys
1010

1111
from pybreeze.utils.file_process.get_dir_file_list import ask_and_get_dir_files_as_list
1212

1313

1414
def call_auto_control(
15-
main_window: AutomationEditor,
15+
main_window: PyBreezeMainWindow,
1616
exec_str: Union[str, None] = None,
1717
program_buffer: int = 1024000
1818
):
1919
build_process(main_window, "je_auto_control", exec_str, False, program_buffer)
2020

2121

2222
def call_auto_control_with_send(
23-
main_window: AutomationEditor,
23+
main_window: PyBreezeMainWindow,
2424
exec_str: Union[str, None] = None,
2525
program_buffer: int = 1024000
2626
):
2727
build_process(main_window, "je_auto_control", exec_str, True, program_buffer)
2828

2929

3030
def call_auto_control_multi_file(
31-
main_window: AutomationEditor,
31+
main_window: PyBreezeMainWindow,
3232
program_buffer: int = 1024000
3333
):
3434
need_to_execute_list: list = ask_and_get_dir_files_as_list(main_window)
@@ -44,7 +44,7 @@ def call_auto_control_multi_file(
4444

4545

4646
def call_auto_control_multi_file_and_send(
47-
main_window: AutomationEditor,
47+
main_window: PyBreezeMainWindow,
4848
program_buffer: int = 1024000
4949
):
5050
try:

pybreeze/extend/process_executor/file_automation/file_automation_process.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@
55
from pybreeze.extend.process_executor.process_executor_utils import build_process
66

77
if TYPE_CHECKING:
8-
from pybreeze.pybreeze_ui.editor_main.main_ui import AutomationEditor
8+
from pybreeze.pybreeze_ui.editor_main.main_ui import PyBreezeMainWindow
99
import sys
1010

1111
from pybreeze.utils.file_process.get_dir_file_list import ask_and_get_dir_files_as_list
1212

1313

1414
def call_file_automation_test(
15-
main_window: AutomationEditor,
15+
main_window: PyBreezeMainWindow,
1616
exec_str: Union[str, None] = None,
1717
program_buffer: int = 1024000
1818
):
1919
build_process(main_window, "automation_file", exec_str, False, program_buffer)
2020

2121

2222
def call_file_automation_test_with_send(
23-
main_window: AutomationEditor,
23+
main_window: PyBreezeMainWindow,
2424
exec_str: Union[str, None] = None,
2525
program_buffer: int = 1024000
2626
):
2727
build_process(main_window, "automation_file", exec_str, True, program_buffer)
2828

2929

3030
def call_file_automation_test_multi_file(
31-
main_window: AutomationEditor,
31+
main_window: PyBreezeMainWindow,
3232
program_buffer: int = 1024000
3333
):
3434
try:
@@ -47,7 +47,7 @@ def call_file_automation_test_multi_file(
4747

4848

4949
def call_file_automation_test_multi_file_and_send(
50-
main_window: AutomationEditor,
50+
main_window: PyBreezeMainWindow,
5151
program_buffer: int = 1024000
5252
):
5353
try:

pybreeze/extend/process_executor/load_density/load_density_process.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@
55
from pybreeze.extend.process_executor.process_executor_utils import build_process
66

77
if TYPE_CHECKING:
8-
from pybreeze.pybreeze_ui.editor_main.main_ui import AutomationEditor
8+
from pybreeze.pybreeze_ui.editor_main.main_ui import PyBreezeMainWindow
99
import sys
1010

1111
from pybreeze.utils.file_process.get_dir_file_list import ask_and_get_dir_files_as_list
1212

1313

1414
def call_load_density(
15-
main_window: AutomationEditor,
15+
main_window: PyBreezeMainWindow,
1616
exec_str: Union[str, None] = None,
1717
program_buffer: int = 1024000
1818
):
1919
build_process(main_window, "je_load_density", exec_str, False, program_buffer)
2020

2121

2222
def call_load_density_with_send(
23-
main_window: AutomationEditor,
23+
main_window: PyBreezeMainWindow,
2424
exec_str: Union[str, None] = None,
2525
program_buffer: int = 1024000
2626
):
2727
build_process(main_window, "je_load_density", exec_str, True, program_buffer)
2828

2929

3030
def call_load_density_multi_file(
31-
main_window: AutomationEditor,
31+
main_window: PyBreezeMainWindow,
3232
program_buffer: int = 1024000
3333
):
3434
try:
@@ -47,7 +47,7 @@ def call_load_density_multi_file(
4747

4848

4949
def call_load_density_multi_file_and_send(
50-
main_window: AutomationEditor,
50+
main_window: PyBreezeMainWindow,
5151
program_buffer: int = 1024000
5252
):
5353
try:

0 commit comments

Comments
 (0)