bcpkgfox 0.16.5b1__tar.gz → 0.16.5b3__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.
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox/cli.py +8 -8
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/setup.py +1 -1
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/README.md +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox/exec_file.py +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox/invoke_api.py +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.5b1 → bcpkgfox-0.16.5b3}/setup.cfg +0 -0
|
@@ -65,7 +65,7 @@ class cli:
|
|
|
65
65
|
exe_group.add_argument(
|
|
66
66
|
'-nc', '--no-console',
|
|
67
67
|
action='store_true',
|
|
68
|
-
help="The exe
|
|
68
|
+
help="The exe don't open the console when started"
|
|
69
69
|
)
|
|
70
70
|
|
|
71
71
|
exe_group.add_argument(
|
|
@@ -139,7 +139,6 @@ class cli:
|
|
|
139
139
|
if not os.path.exists(os.path.join(self.current_dir, self.args.icon[0])):
|
|
140
140
|
raise ValueError(f"The path '{self.args.icon[0]}' not exists")
|
|
141
141
|
|
|
142
|
-
|
|
143
142
|
# Venv
|
|
144
143
|
if self.args.venv:
|
|
145
144
|
self.venv_manager.main()
|
|
@@ -160,9 +159,8 @@ class cli:
|
|
|
160
159
|
elif self.args.exe:
|
|
161
160
|
self.exec_gen.main()
|
|
162
161
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
162
|
+
if self.args.zip:
|
|
163
|
+
self.exec_gen.zip_file()
|
|
166
164
|
|
|
167
165
|
# LOG - Verify imports
|
|
168
166
|
if self.args.find_imports \
|
|
@@ -172,7 +170,7 @@ class cli:
|
|
|
172
170
|
or self.args.exe:
|
|
173
171
|
if self.args.verify_imports:
|
|
174
172
|
self.find_imports.verify_imports()
|
|
175
|
-
|
|
173
|
+
|
|
176
174
|
self.clean_terminal()
|
|
177
175
|
|
|
178
176
|
def clean_terminal(self):
|
|
@@ -256,7 +254,7 @@ class cli:
|
|
|
256
254
|
if s % 10 == 0: n += 1
|
|
257
255
|
if n == len(self.retro_computer_style): n = 0
|
|
258
256
|
|
|
259
|
-
sys.stdout.write(f"\r \033[F\r\033[K\033[E {self.cli.animate_rgb_text(f" {self.cli.visuals.bold} {self.retro_computer_style[n]} {self.text} {self.retro_computer_style[n]} {self.cli.RESET}")} \033[0J\n\033[F")
|
|
257
|
+
sys.stdout.write(f"\r \033[F\r\033[K\033[E {self.cli.visuals.animate_rgb_text(f" {self.cli.visuals.bold} {self.retro_computer_style[n]} {self.text} {self.retro_computer_style[n]} {self.cli.visuals.RESET}")} \033[0J\n\033[F")
|
|
260
258
|
sys.stdout.flush()
|
|
261
259
|
s += 1
|
|
262
260
|
|
|
@@ -375,7 +373,6 @@ class cli:
|
|
|
375
373
|
zip_log = False
|
|
376
374
|
|
|
377
375
|
try:
|
|
378
|
-
|
|
379
376
|
name_dir = self.current_dir.split("\\")
|
|
380
377
|
print(name_dir)
|
|
381
378
|
|
|
@@ -396,6 +393,9 @@ class cli:
|
|
|
396
393
|
os.remove(new_path)
|
|
397
394
|
zip_log = True
|
|
398
395
|
|
|
396
|
+
except Exception as e:
|
|
397
|
+
print(e)
|
|
398
|
+
|
|
399
399
|
finally:
|
|
400
400
|
animation.finish()
|
|
401
401
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|