atomicshop 2.10.1__py3-none-any.whl → 2.10.3__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.
Potentially problematic release.
This version of atomicshop might be problematic. Click here for more details.
- atomicshop/__init__.py +1 -1
- atomicshop/wrappers/pipw.py +26 -0
- {atomicshop-2.10.1.dist-info → atomicshop-2.10.3.dist-info}/METADATA +1 -1
- {atomicshop-2.10.1.dist-info → atomicshop-2.10.3.dist-info}/RECORD +7 -6
- {atomicshop-2.10.1.dist-info → atomicshop-2.10.3.dist-info}/LICENSE.txt +0 -0
- {atomicshop-2.10.1.dist-info → atomicshop-2.10.3.dist-info}/WHEEL +0 -0
- {atomicshop-2.10.1.dist-info → atomicshop-2.10.3.dist-info}/top_level.txt +0 -0
atomicshop/__init__.py
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import subprocess
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
def install_packages_with_current_interpreter(
|
|
6
|
+
package_name_list: list[str],
|
|
7
|
+
user: bool = False,
|
|
8
|
+
upgrade: bool = False
|
|
9
|
+
):
|
|
10
|
+
"""
|
|
11
|
+
This function will install the packages with the current interpreter.
|
|
12
|
+
:param package_name_list: list, the list of package names to install.
|
|
13
|
+
:param user: bool, if True, the packages will be installed for the current user.
|
|
14
|
+
:param upgrade: bool, if True, the packages will be upgraded.
|
|
15
|
+
:return:
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
commands: list[str] = [sys.executable, "-m", "pip", "install"]
|
|
19
|
+
|
|
20
|
+
if user:
|
|
21
|
+
commands.append("--user")
|
|
22
|
+
if upgrade:
|
|
23
|
+
commands.append("--upgrade")
|
|
24
|
+
|
|
25
|
+
for package_name in package_name_list:
|
|
26
|
+
subprocess.check_call([*commands, package_name])
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
atomicshop/__init__.py,sha256=
|
|
1
|
+
atomicshop/__init__.py,sha256=CAdy7uaKf071UFjU2KsMKAsd6EzULOhS7j2IOVneT_A,123
|
|
2
2
|
atomicshop/_basics_temp.py,sha256=6cu2dd6r2dLrd1BRNcVDKTHlsHs_26Gpw8QS6v32lQ0,3699
|
|
3
3
|
atomicshop/_create_pdf_demo.py,sha256=Yi-PGZuMg0RKvQmLqVeLIZYadqEZwUm-4A9JxBl_vYA,3713
|
|
4
4
|
atomicshop/_patch_import.py,sha256=ENp55sKVJ0e6-4lBvZnpz9PQCt3Otbur7F6aXDlyje4,6334
|
|
@@ -145,6 +145,7 @@ atomicshop/wrappers/cryptographyw.py,sha256=H5NaHHDkr97QYhUrHFO9vY218u8k3N3Zgh6b
|
|
|
145
145
|
atomicshop/wrappers/ffmpegw.py,sha256=wcq0ZnAe0yajBOuTKZCCaKI7CDBjkq7FAgdW5IsKcVE,6031
|
|
146
146
|
atomicshop/wrappers/githubw.py,sha256=mQGtj6up1HIvjOD2t0bmOWjLooJLYvuIa7d7H-tknrw,9998
|
|
147
147
|
atomicshop/wrappers/numpyw.py,sha256=sBV4gSKyr23kXTalqAb1oqttzE_2XxBooCui66jbAqc,1025
|
|
148
|
+
atomicshop/wrappers/pipw.py,sha256=iq4pDhmrHqKbcRi3Y6_v2PQSdb4fqfAx79rsX7JEmXo,801
|
|
148
149
|
atomicshop/wrappers/process_wrapper_pbtk.py,sha256=ycPmBRnv627RWks6N8OhxJQe8Gu3h3Vwj-4HswPOw0k,599
|
|
149
150
|
atomicshop/wrappers/pyopensslw.py,sha256=OBWxA6EJ2vU_Qlf4M8m6ilcG3hyYB4yB0EsXUf7NhEU,6804
|
|
150
151
|
atomicshop/wrappers/ubuntu_terminal.py,sha256=1CcTXASzxdFFFJTf3G1OtHcs8abbn_jgkPsY0OzEs1w,4132
|
|
@@ -232,8 +233,8 @@ atomicshop/wrappers/socketw/socket_server_tester.py,sha256=AhpurHJmP2kgzHaUbq5ey
|
|
|
232
233
|
atomicshop/wrappers/socketw/socket_wrapper.py,sha256=aXBwlEIJhFT0-c4i8iNlFx2It9VpCEpsv--5Oqcpxao,11624
|
|
233
234
|
atomicshop/wrappers/socketw/ssl_base.py,sha256=k4V3gwkbq10MvOH4btU4onLX2GNOsSfUAdcHmL1rpVE,2274
|
|
234
235
|
atomicshop/wrappers/socketw/statistics_csv.py,sha256=t3dtDEfN47CfYVi0CW6Kc2QHTEeZVyYhc57IYYh5nmA,826
|
|
235
|
-
atomicshop-2.10.
|
|
236
|
-
atomicshop-2.10.
|
|
237
|
-
atomicshop-2.10.
|
|
238
|
-
atomicshop-2.10.
|
|
239
|
-
atomicshop-2.10.
|
|
236
|
+
atomicshop-2.10.3.dist-info/LICENSE.txt,sha256=lLU7EYycfYcK2NR_1gfnhnRC8b8ccOTElACYplgZN88,1094
|
|
237
|
+
atomicshop-2.10.3.dist-info/METADATA,sha256=Y3tx3_gaPuodTn3bxopQR6X7_AYeMMMcv6Fjtv4dLJA,10423
|
|
238
|
+
atomicshop-2.10.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
239
|
+
atomicshop-2.10.3.dist-info/top_level.txt,sha256=EgKJB-7xcrAPeqTRF2laD_Np2gNGYkJkd4OyXqpJphA,11
|
|
240
|
+
atomicshop-2.10.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|