bcpkgfox 0.16.5b7__py3-none-any.whl → 0.16.5b9__py3-none-any.whl
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/cli.py +13 -15
- {bcpkgfox-0.16.5b7.dist-info → bcpkgfox-0.16.5b9.dist-info}/METADATA +1 -1
- {bcpkgfox-0.16.5b7.dist-info → bcpkgfox-0.16.5b9.dist-info}/RECORD +6 -6
- {bcpkgfox-0.16.5b7.dist-info → bcpkgfox-0.16.5b9.dist-info}/WHEEL +0 -0
- {bcpkgfox-0.16.5b7.dist-info → bcpkgfox-0.16.5b9.dist-info}/entry_points.txt +0 -0
- {bcpkgfox-0.16.5b7.dist-info → bcpkgfox-0.16.5b9.dist-info}/top_level.txt +0 -0
bcpkgfox/cli.py
CHANGED
|
@@ -735,26 +735,24 @@ 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 result.stdout:
|
|
748
|
-
print(f"\033[0J{result.stdout.strip()}\033[0J")
|
|
749
|
-
|
|
750
|
-
except Exception as e:
|
|
751
|
-
print(e)
|
|
752
|
-
|
|
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:
|
|
753
747
|
if isinstance(lib, list):
|
|
754
748
|
self.imports.extend(lib)
|
|
755
749
|
else: self.imports.append(lib)
|
|
756
750
|
continue
|
|
757
751
|
|
|
752
|
+
|
|
753
|
+
elif result.stdout:
|
|
754
|
+
print(f"\033[0J{result.stdout.strip()}\033[0J")
|
|
755
|
+
|
|
758
756
|
process_finished = True
|
|
759
757
|
log_animation.join()
|
|
760
758
|
print(f" {self.visuals.bold}{self.visuals.GR} > All packages installed successfully {self.visuals.RESET}\n\n")
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
bcpkgfox/__init__.py,sha256=tIFJ-KIMZK_ZjcrUg92QoHd2Rbte4cvuPMlPUzjtK0U,15945
|
|
2
|
-
bcpkgfox/cli.py,sha256=
|
|
2
|
+
bcpkgfox/cli.py,sha256=i10zV_goszHj_u5T2kN9w00HuqPWp1GRRg6prdqNJJI,29250
|
|
3
3
|
bcpkgfox/exec_file.py,sha256=fl_Do2SlF7JuXazpNTod-e_0WZUk355fbd7ustQvi40,3728
|
|
4
4
|
bcpkgfox/find_elements.py,sha256=oeB-73LqMLoKchozPXuxRkThBju9IgUKqbgU-2AAq0s,23027
|
|
5
5
|
bcpkgfox/get_driver.py,sha256=ohimk9E2hL6T35IXv0XX0uvWDGCUZvZDlPMnuRjV1R0,30490
|
|
6
6
|
bcpkgfox/invoke_api.py,sha256=UTksbSmg6yucWk-egH1gavYoViKvpUq-OAp5t308ZmY,5334
|
|
7
7
|
bcpkgfox/system.py,sha256=U5vEReSVIQ7LZ-1slUglNyU6k0Vahfioozm6QVEIqfE,6732
|
|
8
|
-
bcpkgfox-0.16.
|
|
9
|
-
bcpkgfox-0.16.
|
|
10
|
-
bcpkgfox-0.16.
|
|
11
|
-
bcpkgfox-0.16.
|
|
12
|
-
bcpkgfox-0.16.
|
|
8
|
+
bcpkgfox-0.16.5b9.dist-info/METADATA,sha256=gEmmluVg80Qe1jKuQaLqr-8NovwMTojnjdXdLTB4zic,1913
|
|
9
|
+
bcpkgfox-0.16.5b9.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
10
|
+
bcpkgfox-0.16.5b9.dist-info/entry_points.txt,sha256=zzthtJtEpeRjlpE6YDBbSGVH6hvnnVyRxVSSgz1_S0M,337
|
|
11
|
+
bcpkgfox-0.16.5b9.dist-info/top_level.txt,sha256=h01SqyYBEfS72vkRFOlEDZBUSu9pzU0bdX4m9hWNNmw,9
|
|
12
|
+
bcpkgfox-0.16.5b9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|