je-editor 0.0.143__py3-none-any.whl → 0.0.144__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- je_editor/__init__.py +22 -23
- je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py +1 -1
- je_editor/pyside_ui/code/syntax/python_syntax.py +0 -1
- je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py +0 -1
- je_editor/pyside_ui/main_ui/editor/editor_widget_full.py +1 -4
- je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py +4 -0
- je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py +8 -9
- je_editor/pyside_ui/main_ui/menu/venv_menu/build_venv_menu.py +1 -1
- je_editor/start_editor.py +1 -1
- je_editor/utils/file/open/open_file.py +0 -3
- je_editor/utils/file/save/save_file.py +0 -1
- {je_editor-0.0.143.dist-info → je_editor-0.0.144.dist-info}/METADATA +1 -1
- {je_editor-0.0.143.dist-info → je_editor-0.0.144.dist-info}/RECORD +16 -16
- {je_editor-0.0.143.dist-info → je_editor-0.0.144.dist-info}/LICENSE +0 -0
- {je_editor-0.0.143.dist-info → je_editor-0.0.144.dist-info}/WHEEL +0 -0
- {je_editor-0.0.143.dist-info → je_editor-0.0.144.dist-info}/top_level.txt +0 -0
je_editor/__init__.py
CHANGED
@@ -1,34 +1,33 @@
|
|
1
1
|
# start editor
|
2
|
-
|
3
|
-
|
4
|
-
from je_editor.pyside_ui.
|
5
|
-
|
2
|
+
# Browser
|
3
|
+
from je_editor.pyside_ui.browser.je_broser import JEBrowser
|
4
|
+
from je_editor.pyside_ui.code.code_process.code_exec import ExecManager
|
5
|
+
# Exec and shell
|
6
|
+
from je_editor.pyside_ui.code.code_process.code_exec import exec_manage
|
7
|
+
# Highlight
|
8
|
+
from je_editor.pyside_ui.code.complete_list.total_complete_list import complete_list
|
9
|
+
from je_editor.pyside_ui.code.shell_process.shell_exec import ShellManager
|
10
|
+
from je_editor.pyside_ui.code.shell_process.shell_exec import default_shell_manager
|
11
|
+
from je_editor.pyside_ui.code.syntax.python_syntax import PythonHighlighter
|
12
|
+
from je_editor.pyside_ui.code.syntax.syntax_setting import syntax_word_setting_dict, syntax_rule_setting_dict
|
13
|
+
# Color
|
14
|
+
from je_editor.pyside_ui.colors.global_color import error_color
|
15
|
+
from je_editor.pyside_ui.colors.global_color import output_color
|
6
16
|
from je_editor.pyside_ui.main_ui.editor.editor_widget import EditorWidget
|
7
17
|
from je_editor.pyside_ui.main_ui.editor.editor_widget_full import FullEditorWidget
|
18
|
+
from je_editor.pyside_ui.main_ui.main_editor import EDITOR_EXTEND_TAB
|
19
|
+
# Editor
|
20
|
+
from je_editor.pyside_ui.main_ui.main_editor import EditorMain
|
21
|
+
from je_editor.start_editor import start_editor
|
22
|
+
from je_editor.utils.exception.exceptions import JEditorCantFindLanguageException
|
23
|
+
from je_editor.utils.exception.exceptions import JEditorContentFileException
|
8
24
|
# Exceptions
|
9
25
|
from je_editor.utils.exception.exceptions import JEditorException
|
10
26
|
from je_editor.utils.exception.exceptions import JEditorExecException
|
27
|
+
from je_editor.utils.exception.exceptions import JEditorJsonException
|
28
|
+
from je_editor.utils.exception.exceptions import JEditorOpenFileException
|
11
29
|
from je_editor.utils.exception.exceptions import JEditorRunOnShellException
|
12
30
|
from je_editor.utils.exception.exceptions import JEditorSaveFileException
|
13
|
-
from je_editor.utils.exception.exceptions import JEditorOpenFileException
|
14
|
-
from je_editor.utils.exception.exceptions import JEditorContentFileException
|
15
|
-
from je_editor.utils.exception.exceptions import JEditorCantFindLanguageException
|
16
|
-
from je_editor.utils.exception.exceptions import JEditorJsonException
|
17
|
-
# Color
|
18
|
-
from je_editor.pyside_ui.colors.global_color import error_color
|
19
|
-
from je_editor.pyside_ui.colors.global_color import output_color
|
20
|
-
# Exec and shell
|
21
|
-
from je_editor.pyside_ui.code.code_process.code_exec import exec_manage
|
22
|
-
from je_editor.pyside_ui.code.code_process.code_exec import ExecManager
|
23
|
-
from je_editor.pyside_ui.code.shell_process.shell_exec import default_shell_manager
|
24
|
-
from je_editor.pyside_ui.code.shell_process.shell_exec import ShellManager
|
25
|
-
# Browser
|
26
|
-
from je_editor.pyside_ui.browser.je_broser import JEBrowser
|
27
|
-
# Highlight
|
28
|
-
from je_editor.pyside_ui.code.complete_list.total_complete_list import complete_list
|
29
|
-
from je_editor.pyside_ui.code.syntax.python_syntax import PythonHighlighter
|
30
|
-
from je_editor.pyside_ui.code.syntax.syntax_setting import syntax_word_setting_dict, syntax_rule_setting_dict
|
31
|
-
|
32
31
|
|
33
32
|
__all__ = [
|
34
33
|
"start_editor", "EditorMain", "EDITOR_EXTEND_TAB",
|
@@ -6,8 +6,8 @@ from PySide6.QtGui import QPainter, QColor, QTextCharFormat, QTextFormat, QKeyEv
|
|
6
6
|
from PySide6.QtWidgets import QPlainTextEdit, QWidget, QTextEdit, QCompleter
|
7
7
|
|
8
8
|
from je_editor.pyside_ui.code.complete_list.total_complete_list import complete_list
|
9
|
-
from je_editor.pyside_ui.dialog.search_ui.search_text_box import SearchBox
|
10
9
|
from je_editor.pyside_ui.code.syntax.python_syntax import PythonHighlighter
|
10
|
+
from je_editor.pyside_ui.dialog.search_ui.search_text_box import SearchBox
|
11
11
|
|
12
12
|
|
13
13
|
class CodeEditor(QPlainTextEdit):
|
@@ -1,11 +1,8 @@
|
|
1
1
|
from pathlib import Path
|
2
2
|
|
3
|
-
from PySide6.
|
4
|
-
from PySide6.QtWidgets import QWidget, QGridLayout, QSplitter, QScrollArea
|
3
|
+
from PySide6.QtWidgets import QWidget, QGridLayout, QScrollArea
|
5
4
|
|
6
|
-
from je_editor.pyside_ui.code.auto_save.auto_save_thread import SaveThread
|
7
5
|
from je_editor.pyside_ui.code.plaintext_code_edit.code_edit_plaintext import CodeEditor
|
8
|
-
from je_editor.pyside_ui.code.textedit_code_result.code_record import CodeRecord
|
9
6
|
from je_editor.utils.file.save.save_file import write_file
|
10
7
|
|
11
8
|
|
@@ -49,6 +49,7 @@ def add_dock_widget(ui_we_want_to_set: EditorMain, widget_type: str = None):
|
|
49
49
|
# Dock widget
|
50
50
|
dock_widget = DestroyDock()
|
51
51
|
if widget_type == "stackoverflow":
|
52
|
+
dock_widget.setWindowTitle("stackoverflow")
|
52
53
|
dock_widget.setWidget(JEBrowser(
|
53
54
|
start_url="https://stackoverflow.com/", search_prefix="https://stackoverflow.com/search?q="))
|
54
55
|
elif widget_type == "editor":
|
@@ -62,9 +63,12 @@ def add_dock_widget(ui_we_want_to_set: EditorMain, widget_type: str = None):
|
|
62
63
|
widget.code_edit.setPlainText(
|
63
64
|
file_content
|
64
65
|
)
|
66
|
+
dock_widget.setWindowTitle("editor")
|
65
67
|
dock_widget.setWidget(widget)
|
66
68
|
elif widget_type == "frontengine":
|
69
|
+
dock_widget.setWindowTitle("frontengine")
|
67
70
|
dock_widget.setWidget(FrontEngineMainUI())
|
68
71
|
else:
|
72
|
+
dock_widget.setWindowTitle("browser")
|
69
73
|
dock_widget.setWidget(JEBrowser())
|
70
74
|
ui_we_want_to_set.addDockWidget(Qt.DockWidgetArea.RightDockWidgetArea, dock_widget)
|
@@ -6,7 +6,6 @@ from je_editor.pyside_ui.browser.je_broser import JEBrowser
|
|
6
6
|
|
7
7
|
if TYPE_CHECKING:
|
8
8
|
from je_editor.pyside_ui.main_ui.main_editor import EditorMain
|
9
|
-
import webbrowser
|
10
9
|
|
11
10
|
from PySide6.QtGui import QAction
|
12
11
|
from PySide6.QtWidgets import QMessageBox
|
@@ -14,24 +13,24 @@ from PySide6.QtWidgets import QMessageBox
|
|
14
13
|
|
15
14
|
def set_help_menu(ui_we_want_to_set: EditorMain) -> None:
|
16
15
|
ui_we_want_to_set.help_menu = ui_we_want_to_set.menu.addMenu("Help")
|
17
|
-
ui_we_want_to_set.help_menu
|
18
|
-
ui_we_want_to_set.help_menu
|
16
|
+
ui_we_want_to_set.help_menu.help_github_action = QAction("GitHub")
|
17
|
+
ui_we_want_to_set.help_menu.help_github_action.triggered.connect(
|
19
18
|
lambda: open_web_browser(
|
20
19
|
ui_we_want_to_set,
|
21
20
|
"https://github.com/Integrated-Testing-Environment/je_editor", "GitHub")
|
22
21
|
)
|
23
|
-
ui_we_want_to_set.help_menu.addAction(ui_we_want_to_set.help_menu
|
22
|
+
ui_we_want_to_set.help_menu.addAction(ui_we_want_to_set.help_menu.help_github_action)
|
24
23
|
|
25
|
-
ui_we_want_to_set.help_menu
|
26
|
-
ui_we_want_to_set.help_menu
|
24
|
+
ui_we_want_to_set.help_menu.help_doc_action = QAction("Doc")
|
25
|
+
ui_we_want_to_set.help_menu.help_doc_action.triggered.connect(
|
27
26
|
lambda: open_web_browser(
|
28
27
|
ui_we_want_to_set,
|
29
28
|
"https://je-editor.readthedocs.io/en/latest/", "Doc")
|
30
29
|
)
|
31
|
-
ui_we_want_to_set.help_menu.addAction(ui_we_want_to_set.help_menu
|
30
|
+
ui_we_want_to_set.help_menu.addAction(ui_we_want_to_set.help_menu.help_doc_action)
|
32
31
|
|
33
|
-
ui_we_want_to_set.help_menu
|
34
|
-
ui_we_want_to_set.help_menu
|
32
|
+
ui_we_want_to_set.help_menu.help_about_action = QAction("About")
|
33
|
+
ui_we_want_to_set.help_menu.help_about_action.triggered.connect(
|
35
34
|
show_about
|
36
35
|
)
|
37
36
|
ui_we_want_to_set.help_menu.addAction(ui_we_want_to_set.help_menu.help_about_action)
|
je_editor/start_editor.py
CHANGED
@@ -6,7 +6,7 @@ from qt_material import apply_stylesheet
|
|
6
6
|
from je_editor.pyside_ui.main_ui.main_editor import EditorMain
|
7
7
|
|
8
8
|
|
9
|
-
def start_editor(debug_mode: bool = False,) -> None:
|
9
|
+
def start_editor(debug_mode: bool = False, ) -> None:
|
10
10
|
new_editor = QApplication(sys.argv)
|
11
11
|
window = EditorMain(debug_mode)
|
12
12
|
apply_stylesheet(new_editor, theme='dark_amber.xml')
|
@@ -1,6 +1,6 @@
|
|
1
|
-
je_editor/__init__.py,sha256=
|
1
|
+
je_editor/__init__.py,sha256=MRYb2B_58aMbHFS1a7rl5hvnIo6ep4ZfqyZIbkm0Y38,2373
|
2
2
|
je_editor/__main__.py,sha256=tv19PbVG_8bg4HhRWINNYL_Zu6VtkJR00U_0v56GsK8,598
|
3
|
-
je_editor/start_editor.py,sha256=
|
3
|
+
je_editor/start_editor.py,sha256=0vm9fMVtmS_2jXN9etLwzlRbYQwVNa3NbOz8W0bhTS4,526
|
4
4
|
je_editor/pyside_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
je_editor/pyside_ui/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
je_editor/pyside_ui/browser/je_broser.py,sha256=Py2ndQdk6y4HG6WDWU0hgSp-NkpT3ldS45IJwfPsuI8,2118
|
@@ -12,11 +12,11 @@ je_editor/pyside_ui/code/code_process/code_exec.py,sha256=tnh7hufKotGasBMlDhiaMU
|
|
12
12
|
je_editor/pyside_ui/code/complete_list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
je_editor/pyside_ui/code/complete_list/total_complete_list.py,sha256=u5Bop4WGv2WPQg2m5BJps5jIKTOTW6o7HvU2Dl4BhLE,1110
|
14
14
|
je_editor/pyside_ui/code/plaintext_code_edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
-
je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=
|
15
|
+
je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=4PGpmns2_4Cf9u2ZY3HW0ZQ9yapP-7GYOebVIQxftIk,9852
|
16
16
|
je_editor/pyside_ui/code/shell_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=4DyHzsGqAJyF-BuUPa04CjRWehw4zyW8dSAYHzTX8ao,7155
|
18
18
|
je_editor/pyside_ui/code/syntax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
-
je_editor/pyside_ui/code/syntax/python_syntax.py,sha256=
|
19
|
+
je_editor/pyside_ui/code/syntax/python_syntax.py,sha256=4xsm6z0hEkh8fZ_I72eXBfkgV9hQ6FjSwJNVeYMfiEg,1611
|
20
20
|
je_editor/pyside_ui/code/syntax/syntax_setting.py,sha256=SNnOW6ioJgLF_JAVNw9yNaEKChgbFSsLkXTt-hVI8DA,2243
|
21
21
|
je_editor/pyside_ui/code/textedit_code_result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
je_editor/pyside_ui/code/textedit_code_result/code_record.py,sha256=PLFK4NoEu_cehIWknUOZGVfq1JXV71klL2p-0plUSiY,1476
|
@@ -25,7 +25,7 @@ je_editor/pyside_ui/colors/global_color.py,sha256=So7yrBceSWeurhmE5ezcOxan7aNTrM
|
|
25
25
|
je_editor/pyside_ui/dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
26
|
je_editor/pyside_ui/dialog/file_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
27
|
je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py,sha256=-zTqhs0PWOYEDMwzI4GsxWEXeTdPbfLONX2gMZz_26s,1240
|
28
|
-
je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py,sha256=
|
28
|
+
je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py,sha256=_MePCPN5cly_HVj_Fvq6hmP5wbL29bo7-G92ZjPFGoU,1518
|
29
29
|
je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py,sha256=-rUva0Bvo6C_i4hsZc2A2ela362z11oykjIGuYhgchw,1470
|
30
30
|
je_editor/pyside_ui/dialog/search_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
31
|
je_editor/pyside_ui/dialog/search_ui/search_error_box.py,sha256=ost5tDwCJp6izbJNDb4jPJrrOpoNAuDkhpROW9R02NQ,865
|
@@ -36,23 +36,23 @@ je_editor/pyside_ui/main_ui/dock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
36
36
|
je_editor/pyside_ui/main_ui/dock/destroy_dock.py,sha256=nyXCE-wAKN1kuOOs-ClQIH8NU0fXlJKbjOZWuDojvhw,418
|
37
37
|
je_editor/pyside_ui/main_ui/editor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
38
|
je_editor/pyside_ui/main_ui/editor/editor_widget.py,sha256=8UluGyZtBnY36SedXuucr46mFmMG-gfayixud6t402M,4491
|
39
|
-
je_editor/pyside_ui/main_ui/editor/editor_widget_full.py,sha256=
|
39
|
+
je_editor/pyside_ui/main_ui/editor/editor_widget_full.py,sha256=4Btmz8R5Nc0kKR7Bk3ZX3XG1vy3x-khx-afpLRa9tGA,1197
|
40
40
|
je_editor/pyside_ui/main_ui/menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
41
|
je_editor/pyside_ui/main_ui/menu/set_menu_bar.py,sha256=ksV5WNKdv2bmZWvPqUkKWYshsl-dPy3IZ0i-o59P3Ww,1332
|
42
42
|
je_editor/pyside_ui/main_ui/menu/check_style_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
43
|
je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py,sha256=GXaN7wWrL8UUQYZgXUyPQeoyAsLnKEc1YC58x_-GVmo,2239
|
44
44
|
je_editor/pyside_ui/main_ui/menu/dock_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
-
je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=
|
45
|
+
je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=mzgmQX3iiBLyTAoAo_FMkVNu9kUNa5rHBmMFMIAeWJ8,3385
|
46
46
|
je_editor/pyside_ui/main_ui/menu/file_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py,sha256=HPNz764mhzodlWJL9OQf4xy0y0QdT8RdbFSMQxBFl4E,2005
|
48
48
|
je_editor/pyside_ui/main_ui/menu/help_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py,sha256=
|
49
|
+
je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py,sha256=OBNa9K_gQ5OESje6MgtRfC9IwJqiRChFQO2LgcO63P4,1865
|
50
50
|
je_editor/pyside_ui/main_ui/menu/run_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
51
|
je_editor/pyside_ui/main_ui/menu/run_menu/build_run_menu.py,sha256=_eO_Mxv22yRiBwBISlPsbdg1-PGCI3sOvQw5z0nxPdQ,4932
|
52
52
|
je_editor/pyside_ui/main_ui/menu/tab_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
53
|
je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=ti4ATejgjfcHf9bmTWMW4KZb0EjWMxZXWuMS9Ylk2rI,2631
|
54
54
|
je_editor/pyside_ui/main_ui/menu/venv_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
-
je_editor/pyside_ui/main_ui/menu/venv_menu/build_venv_menu.py,sha256
|
55
|
+
je_editor/pyside_ui/main_ui/menu/venv_menu/build_venv_menu.py,sha256=-kboawnD8T4Wh2RUfWsP6hWdv-jnKJge3757_1fvXw0,5227
|
56
56
|
je_editor/pyside_ui/main_ui/save_user_setting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
57
57
|
je_editor/pyside_ui/main_ui/save_user_setting/user_setting_file.py,sha256=yLEnSbZfU4tn_LuBYvCJ4UW86ec-GnNM17ZE8zy7Mbw,680
|
58
58
|
je_editor/pyside_ui/main_ui/system_tray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -65,9 +65,9 @@ je_editor/utils/exception/exception_tags.py,sha256=js-3dZgCo_EteNRCAv2DE-dU9_Byv
|
|
65
65
|
je_editor/utils/exception/exceptions.py,sha256=4e2ivqFWgBq4L_8QgRjd79xdOAgR_tyW_hpBlQeePpw,506
|
66
66
|
je_editor/utils/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
67
|
je_editor/utils/file/open/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
68
|
-
je_editor/utils/file/open/open_file.py,sha256=
|
68
|
+
je_editor/utils/file/open/open_file.py,sha256=AHYPLjjJnnGbYvtK3_xC0UOtTO1tQT7X5gjcfYx8AyY,1050
|
69
69
|
je_editor/utils/file/save/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
70
|
-
je_editor/utils/file/save/save_file.py,sha256=
|
70
|
+
je_editor/utils/file/save/save_file.py,sha256=NQk6iuf0uG27RgA7tb1fRARbW1sU9kLmwVwIWIRfhQM,760
|
71
71
|
je_editor/utils/json/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
72
|
je_editor/utils/json/json_file.py,sha256=pr_4K_xjz7nKG1Yd-2dhwLZzxXCeE4C7n52NgATm_5c,1370
|
73
73
|
je_editor/utils/json_format/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
@@ -76,8 +76,8 @@ je_editor/utils/redirect_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
76
76
|
je_editor/utils/redirect_manager/redirect_manager_class.py,sha256=izziweWPARG9TjvZWNgRYMnZblfHLkSyAaEW4ku9SuE,2057
|
77
77
|
je_editor/utils/venv_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
78
|
je_editor/utils/venv_check/check_venv.py,sha256=3HjMwqJzqY8Ir6auniyZMlL0h0TAvP3nZkOI-bR4_jA,798
|
79
|
-
je_editor-0.0.
|
80
|
-
je_editor-0.0.
|
81
|
-
je_editor-0.0.
|
82
|
-
je_editor-0.0.
|
83
|
-
je_editor-0.0.
|
79
|
+
je_editor-0.0.144.dist-info/LICENSE,sha256=YcSMBs2sED35BtlErMkfIDye9Oo-3SYmUJiZJOpa34g,1085
|
80
|
+
je_editor-0.0.144.dist-info/METADATA,sha256=eDJGswXOrxR5fBHVz2vXVI5H1MXK7a7t2SivFyMg5fs,3223
|
81
|
+
je_editor-0.0.144.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
82
|
+
je_editor-0.0.144.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
|
83
|
+
je_editor-0.0.144.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|