bcpkgfox 0.16.5b8__tar.gz → 0.16.5b9__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.5b8 → bcpkgfox-0.16.5b9}/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox/cli.py +17 -18
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/setup.py +1 -1
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/README.md +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox/exec_file.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox/invoke_api.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b9}/setup.cfg +0 -0
|
@@ -735,24 +735,23 @@ class cli:
|
|
|
735
735
|
|
|
736
736
|
process_finished = False
|
|
737
737
|
for lib in librarys:
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
if
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
print(f"\033[0J{result.stdout.strip()}\033[0J")
|
|
738
|
+
result = subprocess.run(
|
|
739
|
+
[pip_path, 'install', lib],
|
|
740
|
+
# check=True,
|
|
741
|
+
stdout=subprocess.PIPE,
|
|
742
|
+
stderr=subprocess.PIPE,
|
|
743
|
+
text=True
|
|
744
|
+
)
|
|
745
|
+
|
|
746
|
+
if result.returncode != 0:
|
|
747
|
+
if isinstance(lib, list):
|
|
748
|
+
self.imports.extend(lib)
|
|
749
|
+
else: self.imports.append(lib)
|
|
750
|
+
continue
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
elif result.stdout:
|
|
754
|
+
print(f"\033[0J{result.stdout.strip()}\033[0J")
|
|
756
755
|
|
|
757
756
|
process_finished = True
|
|
758
757
|
log_animation.join()
|
|
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
|