bcpkgfox 0.16.5b4__tar.gz → 0.16.5b6__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.5b4 → bcpkgfox-0.16.5b6}/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox/cli.py +14 -8
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/setup.py +1 -1
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/README.md +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox/exec_file.py +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox/invoke_api.py +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.5b4 → bcpkgfox-0.16.5b6}/setup.cfg +0 -0
|
@@ -163,13 +163,16 @@ class cli:
|
|
|
163
163
|
self.exec_gen.zip_file()
|
|
164
164
|
|
|
165
165
|
# LOG - Verify imports
|
|
166
|
-
if self.args.
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
166
|
+
if self.args.verify_imports:
|
|
167
|
+
if self.args.find_imports \
|
|
168
|
+
or self.args.install_imports \
|
|
169
|
+
or self.args.venv \
|
|
170
|
+
or self.args.recreate_venv \
|
|
171
|
+
or self.args.exe:
|
|
172
172
|
self.find_imports.verify_imports()
|
|
173
|
+
else:
|
|
174
|
+
print(f"{self.visuals.bold}{self.visuals.RD} > Error: You need to use one function that installs imports before verifying them.{self.visuals.RESET}")
|
|
175
|
+
print("\033[J", end='', flush=True)
|
|
173
176
|
|
|
174
177
|
self.clean_terminal()
|
|
175
178
|
|
|
@@ -744,17 +747,20 @@ class cli:
|
|
|
744
747
|
if result.stdout:
|
|
745
748
|
print(f"\033[0J{result.stdout.strip()}\033[0J")
|
|
746
749
|
|
|
747
|
-
except
|
|
750
|
+
except Exception as e:
|
|
751
|
+
print(e)
|
|
748
752
|
self.erro_libs.append(lib)
|
|
753
|
+
continue
|
|
749
754
|
|
|
750
755
|
process_finished = True
|
|
751
756
|
log_animation.join()
|
|
752
|
-
print(f" {self.visuals.bold}{self.visuals.GR} > All
|
|
757
|
+
print(f" {self.visuals.bold}{self.visuals.GR} > All packages installed successfully {self.visuals.RESET}\n\n")
|
|
753
758
|
|
|
754
759
|
except Exception as e:
|
|
755
760
|
process_finished = True
|
|
756
761
|
self.descerror = e
|
|
757
762
|
self.error = 1
|
|
763
|
+
print(e)
|
|
758
764
|
sys.exit()
|
|
759
765
|
|
|
760
766
|
def recreate_venv(self):
|
|
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
|