je-editor 0.0.177__py3-none-any.whl → 0.0.179__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 CHANGED
@@ -18,9 +18,9 @@ from je_editor.utils.exception.exceptions import JEditorJsonException
18
18
  from je_editor.utils.exception.exceptions import JEditorOpenFileException
19
19
  from je_editor.utils.exception.exceptions import JEditorRunOnShellException
20
20
  from je_editor.utils.exception.exceptions import JEditorSaveFileException
21
- from je_editor.utils.multi_language.traditional_chinese import traditional_chinese_word_dict
22
21
  from je_editor.utils.multi_language.english import english_word_dict
23
22
  from je_editor.utils.multi_language.multi_language_wrapper import language_wrapper
23
+ from je_editor.utils.multi_language.traditional_chinese import traditional_chinese_word_dict
24
24
 
25
25
  __all__ = [
26
26
  "start_editor", "EditorMain", "EDITOR_EXTEND_TAB",
@@ -24,9 +24,7 @@ class PEP8FormatChecker(pycodestyle.Checker):
24
24
  self.error_list: list = list()
25
25
 
26
26
  def replace_report_error(self, line_number, offset, text, check):
27
- if text.startswith("W191"):
28
- pass
29
- else:
27
+ if not text.startswith("W191"):
30
28
  self.error_list.append(f"{text} on line: {line_number}, offset: {offset}")
31
29
 
32
30
  def check_all_format(self, expected=None, line_offset=0) -> int:
@@ -130,6 +130,11 @@ class ExecManager(object):
130
130
  if self.process is not None:
131
131
  self.process.terminate()
132
132
 
133
+ def full_exit_program(self):
134
+ self.timer.stop()
135
+ self.exit_program()
136
+ self.main_window.exec_program = None
137
+
133
138
  def pull_text(self) -> None:
134
139
  # Pull text from queue and put in code result area
135
140
  try:
@@ -149,13 +154,9 @@ class ExecManager(object):
149
154
  except queue.Empty:
150
155
  pass
151
156
  if self.process.returncode == 0:
152
- self.timer.stop()
153
- self.exit_program()
154
- self.main_window.exec_program = None
157
+ self.full_exit_program()
155
158
  elif self.process.returncode is not None:
156
- self.timer.stop()
157
- self.exit_program()
158
- self.main_window.exec_program = None
159
+ self.full_exit_program()
159
160
  if self.still_run_program:
160
161
  # poll return code
161
162
  self.process.poll()
@@ -3,7 +3,6 @@ from __future__ import annotations
3
3
  from pathlib import Path
4
4
  from typing import TYPE_CHECKING
5
5
 
6
-
7
6
  if TYPE_CHECKING:
8
7
  from je_editor.pyside_ui.main_ui.editor.editor_widget import EditorWidget
9
8
  from je_editor.pyside_ui.main_ui.editor.editor_widget_dock import FullEditorWidget
@@ -78,11 +77,8 @@ class CodeEditor(QPlainTextEdit):
78
77
 
79
78
  def check_env(self):
80
79
  path = venv_check()
81
- try:
82
- if path.exists():
83
- self.env = jedi.create_environment(str(path))
84
- except Exception as error:
85
- raise error
80
+ if path.exists():
81
+ self.env = jedi.create_environment(str(path))
86
82
 
87
83
  def set_complete(self, list_to_complete: list) -> None:
88
84
  """
@@ -103,7 +103,7 @@ class EditorMain(QMainWindow, QtStyleTools):
103
103
  # TAB Add
104
104
  self.tab_widget.addTab(EditorWidget(self), language_wrapper.language_word_dict.get("tab_name_editor"))
105
105
  self.tab_widget.addTab(
106
- FrontEngineMainUI(show_system_tray_ray=False),
106
+ FrontEngineMainUI(show_system_tray_ray=False, redirect_output=False),
107
107
  language_wrapper.language_word_dict.get("tab_name_frontengine"))
108
108
  self.tab_widget.addTab(JEBrowser(), language_wrapper.language_word_dict.get("tab_name_web_browser"))
109
109
  self.tab_widget.addTab(
@@ -81,7 +81,7 @@ def add_dock_widget(ui_we_want_to_set: EditorMain, widget_type: str = None):
81
81
  dock_widget.setWidget(widget)
82
82
  elif widget_type == "frontengine":
83
83
  dock_widget.setWindowTitle(language_wrapper.language_word_dict.get("dock_frontengine_title"))
84
- dock_widget.setWidget(FrontEngineMainUI())
84
+ dock_widget.setWidget(FrontEngineMainUI(redirect_output=False))
85
85
  elif widget_type == "ipython":
86
86
  dock_widget.setWindowTitle(language_wrapper.language_word_dict.get("dock_ipython_title"))
87
87
  dock_widget.setWidget(IpythonWidget(ui_we_want_to_set))
@@ -7,6 +7,7 @@ from frontengine import FrontEngineMainUI
7
7
  from je_editor.pyside_ui.browser.browser_widget import JEBrowser
8
8
  from je_editor.pyside_ui.main_ui.editor.editor_widget import EditorWidget
9
9
  from je_editor.pyside_ui.main_ui.ipython_widget.rich_jupyter import IpythonWidget
10
+ from re_edge_gpt.ui.chat.main_ui import ChatMainUI
10
11
 
11
12
  if TYPE_CHECKING:
12
13
  from je_editor.pyside_ui.main_ui.main_editor import EditorMain
@@ -53,6 +54,13 @@ def set_tab_menu(ui_we_want_to_set: EditorMain) -> None:
53
54
  lambda: add_ipython(ui_we_want_to_set)
54
55
  )
55
56
  ui_we_want_to_set.tab_menu.addAction(ui_we_want_to_set.tab_menu.add_ipython_action)
57
+ # ReEdgeGPT
58
+ ui_we_want_to_set.tab_menu.add_re_edge_gpt_action = QAction(
59
+ language_wrapper.language_word_dict.get("tab_menu_re_re_edge_gpt_tab_name"))
60
+ ui_we_want_to_set.tab_menu.add_re_edge_gpt_action.triggered.connect(
61
+ lambda: add_re_edge_gpt(ui_we_want_to_set)
62
+ )
63
+ ui_we_want_to_set.tab_menu.addAction(ui_we_want_to_set.tab_menu.add_re_edge_gpt_action)
56
64
 
57
65
 
58
66
  def add_editor_tab(ui_we_want_to_set: EditorMain):
@@ -66,7 +74,7 @@ def add_editor_tab(ui_we_want_to_set: EditorMain):
66
74
 
67
75
  def add_frontengine_tab(ui_we_want_to_set: EditorMain):
68
76
  ui_we_want_to_set.tab_widget.addTab(
69
- FrontEngineMainUI(show_system_tray_ray=False),
77
+ FrontEngineMainUI(show_system_tray_ray=False, redirect_output=False),
70
78
  f"{language_wrapper.language_word_dict.get('tab_menu_frontengine_tab_name')} "
71
79
  f"{ui_we_want_to_set.tab_widget.count()}")
72
80
 
@@ -90,3 +98,10 @@ def add_ipython(ui_we_want_to_set: EditorMain):
90
98
  IpythonWidget(ui_we_want_to_set),
91
99
  f"{language_wrapper.language_word_dict.get('tab_menu_ipython_tab_name')} "
92
100
  f"{ui_we_want_to_set.tab_widget.count()}")
101
+
102
+
103
+ def add_re_edge_gpt(ui_we_want_to_set: EditorMain):
104
+ ui_we_want_to_set.tab_widget.addTab(
105
+ ChatMainUI(),
106
+ f"{language_wrapper.language_word_dict.get('tab_name_re_edge_gpt')} "
107
+ f"{ui_we_want_to_set.tab_widget.count()}")
@@ -1,12 +1,12 @@
1
- from os import getcwd
2
- from pathlib import Path
3
-
4
- from je_editor.utils.json.json_file import write_json
5
-
6
-
7
- def write_setting(save_dict: dict, file_name: str) -> None:
8
- save_dir = Path(getcwd() + "/.jeditor")
9
- save_dir.mkdir(parents=True, exist_ok=True)
10
- save_file = Path(getcwd() + f"/.jeditor/{file_name}")
11
- write_json(str(save_file), save_dict)
12
-
1
+ from os import getcwd
2
+ from pathlib import Path
3
+
4
+ from je_editor.utils.json.json_file import write_json
5
+
6
+
7
+ def write_setting(save_dict: dict, file_name: str) -> None:
8
+ save_dir = Path(getcwd() + "/.jeditor")
9
+ save_dir.mkdir(parents=True, exist_ok=True)
10
+ save_file = Path(getcwd() + f"/.jeditor/{file_name}")
11
+ write_json(str(save_file), save_dict)
12
+
je_editor/start_editor.py CHANGED
@@ -7,7 +7,7 @@ from qt_material import apply_stylesheet
7
7
  from je_editor.pyside_ui.main_ui.main_editor import EditorMain
8
8
 
9
9
 
10
- def start_editor(debug_mode: bool = False, ) -> None:
10
+ def start_editor(debug_mode: bool = False) -> None:
11
11
  new_editor = QCoreApplication.instance()
12
12
  if new_editor is None:
13
13
  new_editor = QApplication(sys.argv)
@@ -5,6 +5,7 @@ english_word_dict = {
5
5
  "tab_name_editor": "Editor",
6
6
  "tab_name_web_browser": "Web Browser",
7
7
  "tab_name_frontengine": "FrontEngine",
8
+ "tab_name_re_edge_gpt": "Re-EdgeGPT",
8
9
  # Browser
9
10
  "browser_download_detail": "Download Detail",
10
11
  "browser_find_text": "Find Text",
@@ -107,6 +108,7 @@ please make sure that the current encoding is consistent with the default encodi
107
108
  "tab_menu_web_tab_name": "WEB Browser",
108
109
  "tab_menu_stackoverflow_tab_name": "Stackoverflow",
109
110
  "tab_menu_ipython_tab_name": "IPython(Jupyter)",
111
+ "tab_menu_re_re_edge_gpt_tab_name": "ReEdgeGPT",
110
112
  # Text Menu
111
113
  "text_menu_label": "Text",
112
114
  "text_menu_label_font": "Font",
@@ -5,6 +5,7 @@ traditional_chinese_word_dict = {
5
5
  "tab_name_editor": "編輯器",
6
6
  "tab_name_web_browser": "網頁瀏覽器",
7
7
  "tab_name_frontengine": "前景引擎",
8
+ "tab_name_re_edge_gpt": "Re-EdgeGPT",
8
9
  # Browser
9
10
  "browser_download_detail": "下載資訊",
10
11
  "browser_find_text": "搜尋文字",
@@ -105,6 +106,7 @@ traditional_chinese_word_dict = {
105
106
  "tab_menu_web_tab_name": "瀏覽器",
106
107
  "tab_menu_stackoverflow_tab_name": "Stackoverflow",
107
108
  "tab_menu_ipython_tab_name": "IPython(Jupyter)",
109
+ "tab_menu_re_re_edge_gpt_tab_name": "ReEdgeGPT",
108
110
  # Text Menu
109
111
  "text_menu_label": "文字",
110
112
  "text_menu_label_font": "字體",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
- Name: je-editor
3
- Version: 0.0.177
2
+ Name: je_editor
3
+ Version: 0.0.179
4
4
  Summary: JEditor is basic but powerful editor include GPT
5
5
  Author-email: JE-Chen <jechenmailman@gmail.com>
6
6
  License: MIT
@@ -24,6 +24,7 @@ Requires-Dist: frontengine
24
24
  Requires-Dist: pycodestyle
25
25
  Requires-Dist: jedi
26
26
  Requires-Dist: qtconsole
27
+ Requires-Dist: re-edge-gpt[gui]
27
28
 
28
29
  # je_editor
29
30
 
@@ -1,6 +1,6 @@
1
- je_editor/__init__.py,sha256=RGcPvXIfAZVYzjSnylhVbofh_ohBbogi2zVXi0OjuWc,2393
1
+ je_editor/__init__.py,sha256=ogIintqPy5_fwNY6FFwrMZIN28pyQB-yEzmQriRjTTA,2393
2
2
  je_editor/__main__.py,sha256=tv19PbVG_8bg4HhRWINNYL_Zu6VtkJR00U_0v56GsK8,598
3
- je_editor/start_editor.py,sha256=RWt29GCT5vmh6hSct3RhMkncJOqRjJ-XauPMmvEMN0c,545
3
+ je_editor/start_editor.py,sha256=hW7JFOjBkcW7hdC7q-9JsaVTeSNCep1GsqxLmbMU4wg,543
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/browser_download_window.py,sha256=yqEnqgl-sRJB3yyrDVMO3rQn7GU1LN9NAI8lXRxWMT8,1594
@@ -13,11 +13,11 @@ je_editor/pyside_ui/code/auto_save/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
13
13
  je_editor/pyside_ui/code/auto_save/auto_save_manager.py,sha256=BWiU0kp21VCcyZ1tkbqfoKdIi8gQsfs1nBEXGhwwfYA,775
14
14
  je_editor/pyside_ui/code/auto_save/auto_save_thread.py,sha256=LHfWKNVE1Rmd1MHbubHXvtUNdxlTAIVDbg2hjU8EY80,1219
15
15
  je_editor/pyside_ui/code/code_format/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- je_editor/pyside_ui/code/code_format/pep8_format.py,sha256=YVaoZX4AxL-FUgvlMFr4m4Da_ZsXaymW5jJrbOA-V0A,2920
16
+ je_editor/pyside_ui/code/code_format/pep8_format.py,sha256=MXRV9znb9H_2kdVFKBCcausehdm3wdlipx079UcuHH0,2891
17
17
  je_editor/pyside_ui/code/code_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- je_editor/pyside_ui/code/code_process/code_exec.py,sha256=Ox_JmrtX2M5ygVbK4mJ28pPgZ83OZeE7ldW2rH5lMHI,8779
18
+ je_editor/pyside_ui/code/code_process/code_exec.py,sha256=esmJS0kIMbvucjTYHT7L6SPT8fuhNzY0heXnFmhzX8s,8765
19
19
  je_editor/pyside_ui/code/plaintext_code_edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=7xxYIOrjhlBYbARVfCF-ChFf1MzrD20r4Run4pEesAQ,12427
20
+ je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=9oemWw5TEVkeYsmDvpmof-N07-aZMz0WSgDuFrQjyKY,12342
21
21
  je_editor/pyside_ui/code/shell_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
22
  je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=477oCBLtK4lH_aO80U7hXPgdpDu-WAY94MIBLcin51Y,7737
23
23
  je_editor/pyside_ui/code/syntax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -34,7 +34,7 @@ je_editor/pyside_ui/dialog/search_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
34
34
  je_editor/pyside_ui/dialog/search_ui/search_error_box.py,sha256=vZfbTFMfjWN2EphIp1BmpV7r9Uwg3NCDV0uUv4OMaaw,1047
35
35
  je_editor/pyside_ui/dialog/search_ui/search_text_box.py,sha256=nIJpk8pTZ9zMroFWfGwM-AKINS4AUu3pLWusiBkwI3g,1039
36
36
  je_editor/pyside_ui/main_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- je_editor/pyside_ui/main_ui/main_editor.py,sha256=mJ05HEyvSLAvSWjGsye4t8W7OPETx50fxOT2NwGKe8s,10295
37
+ je_editor/pyside_ui/main_ui/main_editor.py,sha256=2VZvZjU8FRyKk8S-3RfL0rmlk6du5YXCYd_rx2VMdkQ,10318
38
38
  je_editor/pyside_ui/main_ui/dock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
39
  je_editor/pyside_ui/main_ui/dock/destroy_dock.py,sha256=c1tAbW52cpNRSaxeElAnnszlJ4sKvFkwDo_yy2ryx4g,414
40
40
  je_editor/pyside_ui/main_ui/editor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -48,7 +48,7 @@ je_editor/pyside_ui/main_ui/menu/set_menu_bar.py,sha256=7Jddrqhk1G763Oe_ZTHgPD_C
48
48
  je_editor/pyside_ui/main_ui/menu/check_style_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
49
  je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py,sha256=uJf-5mvgiTxBU7Fj-9-Jmb7JldsWCw655vjpr-_2TD4,2590
50
50
  je_editor/pyside_ui/main_ui/menu/dock_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=OMwfwiNZmFgeLyqHh06XvKAIQ3prWNeWmbtsd8xQ5MQ,4594
51
+ je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=wue4o4Nf7wrCzoc-hUUYfwU4j-DxCmJ_JSvPWNLfbeU,4615
52
52
  je_editor/pyside_ui/main_ui/menu/file_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py,sha256=HDtD-BjWtBApON9R8fmSB12CB7MnZTLm8uNCb6gzurY,5674
54
54
  je_editor/pyside_ui/main_ui/menu/help_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -67,11 +67,11 @@ je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py,sha256=5ODFU8K
67
67
  je_editor/pyside_ui/main_ui/menu/style_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
68
  je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py,sha256=rYPqsagvIxfUNvQrdxzriFXvfgKlBmTYdwQCuma3h8A,1530
69
69
  je_editor/pyside_ui/main_ui/menu/tab_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=hAyD3lp_2-uhdmZbeDvrRFsrLNpfIIofl-E47LF11co,4143
70
+ je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=2Ocrb_YPoxZNr4l42ZiWZ6ujBv-0js6gTlviqKY3I9o,4866
71
71
  je_editor/pyside_ui/main_ui/menu/text_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
72
  je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py,sha256=U8PlabW4hOBORqVFeLwUDFWROid7MambFCQ0iEWCkwA,3044
73
73
  je_editor/pyside_ui/main_ui/save_settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- je_editor/pyside_ui/main_ui/save_settings/setting_utils.py,sha256=n8PJt90Lvamr6pnuw2FM-xfoRwZ4jr2I5-97U5seA_Y,357
74
+ je_editor/pyside_ui/main_ui/save_settings/setting_utils.py,sha256=ysvxiLWkErE9M1OIGDWFZk0wmoK7pZHuFIX1WeGXOsU,369
75
75
  je_editor/pyside_ui/main_ui/save_settings/user_color_setting_file.py,sha256=YhRoA6XqdBFNwVEyZTUWFOuHNXU-lib6Or-5JbzNsDA,2835
76
76
  je_editor/pyside_ui/main_ui/save_settings/user_setting_file.py,sha256=ugqJIAeSwI0-2Pi39GFfpqEzeZll73ir2rDFRCE8IcM,831
77
77
  je_editor/pyside_ui/main_ui/system_tray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -92,15 +92,15 @@ je_editor/utils/json/json_file.py,sha256=pr_4K_xjz7nKG1Yd-2dhwLZzxXCeE4C7n52NgAT
92
92
  je_editor/utils/json_format/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
93
93
  je_editor/utils/json_format/json_process.py,sha256=sLNdOaP600wUMD0sMDairuhYFEkDb-fQfREuHOybArE,1021
94
94
  je_editor/utils/multi_language/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- je_editor/utils/multi_language/english.py,sha256=Q7tTYUmEfZ9zV9X5sQC0cO-1UGnP99IktlmVoRzZM84,5681
95
+ je_editor/utils/multi_language/english.py,sha256=Wbku1oGVoxDRpUb3JKy1Qlj8BByDNB60PvH4TEQwGgw,5778
96
96
  je_editor/utils/multi_language/multi_language_wrapper.py,sha256=HNGjWuPGa3PlCyu9DF2ikzVySPAgXsevmOVGBju88W8,844
97
- je_editor/utils/multi_language/traditional_chinese.py,sha256=8zhDePQHLeeehcQcVOhARoH9hN5eOX4OZsrwtD42spc,5715
97
+ je_editor/utils/multi_language/traditional_chinese.py,sha256=tWs9_yhuNoehpYFCv37a6eVYphkzN9Jb_9Pbj267Mcc,5812
98
98
  je_editor/utils/redirect_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
99
  je_editor/utils/redirect_manager/redirect_manager_class.py,sha256=RulOP6Udyna3q01iti_BuMpmhEIObnTJq3G5MIu1Rwo,1750
100
100
  je_editor/utils/venv_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
101
  je_editor/utils/venv_check/check_venv.py,sha256=3HjMwqJzqY8Ir6auniyZMlL0h0TAvP3nZkOI-bR4_jA,798
102
- je_editor-0.0.177.dist-info/LICENSE,sha256=KMhUHh6pnIUvmXDW-49L_Sz63bqkOlPDqsecaqKiitU,1091
103
- je_editor-0.0.177.dist-info/METADATA,sha256=Xw2GEf6UdUE2r9GDra2Ix6GVUIwj5krjLmv5vG6Jsvw,3298
104
- je_editor-0.0.177.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
105
- je_editor-0.0.177.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
106
- je_editor-0.0.177.dist-info/RECORD,,
102
+ je_editor-0.0.179.dist-info/LICENSE,sha256=KMhUHh6pnIUvmXDW-49L_Sz63bqkOlPDqsecaqKiitU,1091
103
+ je_editor-0.0.179.dist-info/METADATA,sha256=l_YC0zPwhccB6ZtSqsmhI7sgC6CXqv_BNQXPohAwld4,3331
104
+ je_editor-0.0.179.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
105
+ je_editor-0.0.179.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
106
+ je_editor-0.0.179.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: setuptools (71.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5