atomicshop 2.11.8__py3-none-any.whl → 2.11.10__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 CHANGED
@@ -1,4 +1,4 @@
1
1
  """Atomic Basic functions and classes to make developer life easier"""
2
2
 
3
3
  __author__ = "Den Kras"
4
- __version__ = '2.11.8'
4
+ __version__ = '2.11.10'
@@ -90,7 +90,7 @@ def install_docker_ubuntu(
90
90
  """
91
91
 
92
92
  if use_docker_installer:
93
- if not ubuntu_terminal.is_package_installed('curl'):
93
+ if not ubuntu_terminal.is_executable_exists('curl'):
94
94
  print_api('curl is not installed, installing...', color='yellow')
95
95
  ubuntu_terminal.update_system_packages()
96
96
  ubuntu_terminal.install_packages(['curl'])
@@ -38,9 +38,8 @@ def install_before_restart(
38
38
  sys.exit(1)
39
39
 
40
40
  # Install docker in rootless mode.
41
- with permissions.temporary_regular_permissions():
42
- install_docker.install_docker_ubuntu(
43
- use_docker_installer=True, rootless=True, add_current_user_to_docker_group_bool=False)
41
+ install_docker.install_docker_ubuntu(
42
+ use_docker_installer=True, rootless=True, add_current_user_to_docker_group_bool=False)
44
43
 
45
44
  # docker_keyring_file_path: str = "/etc/apt/keyrings/docker.gpg"
46
45
  nodesource_keyring_file_path: str = "/etc/apt/keyrings/nodesource.gpg"
@@ -20,7 +20,7 @@ def install_packages(package_list: list[str]):
20
20
  subprocess.check_call(command)
21
21
 
22
22
 
23
- def is_package_installed(package: str) -> bool:
23
+ def is_package_in_apt_cache(package: str) -> bool:
24
24
  try:
25
25
  # Run the apt-cache show command to check if the package exists
26
26
  result = subprocess.run(['apt-cache', 'show', package], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: atomicshop
3
- Version: 2.11.8
3
+ Version: 2.11.10
4
4
  Summary: Atomic functions and classes to make developer life easier
5
5
  Author: Denis Kras
6
6
  License: MIT License
@@ -1,4 +1,4 @@
1
- atomicshop/__init__.py,sha256=1jrZZa-oU7IbMcuWfPImAd4L_0Yx5b9PfAFMudxrmBQ,123
1
+ atomicshop/__init__.py,sha256=79v85mDVRNzi_7-AAbl0Cjtk_-E3E14N0LEzy3eibpY,124
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
@@ -151,7 +151,7 @@ atomicshop/wrappers/olefilew.py,sha256=biD5m58rogifCYmYhJBrAFb9O_Bn_spLek_9HofLe
151
151
  atomicshop/wrappers/pipw.py,sha256=iq4pDhmrHqKbcRi3Y6_v2PQSdb4fqfAx79rsX7JEmXo,801
152
152
  atomicshop/wrappers/process_wrapper_pbtk.py,sha256=ycPmBRnv627RWks6N8OhxJQe8Gu3h3Vwj-4HswPOw0k,599
153
153
  atomicshop/wrappers/pyopensslw.py,sha256=OBWxA6EJ2vU_Qlf4M8m6ilcG3hyYB4yB0EsXUf7NhEU,6804
154
- atomicshop/wrappers/ubuntu_terminal.py,sha256=90YmBi1qc-UAEA6560sYKDnPMnIHzJXznk67cHf4_Vg,6687
154
+ atomicshop/wrappers/ubuntu_terminal.py,sha256=KwhfpvI57woCPIWFBRqS7WceZkwlcJ2xTWUHo8F_FUw,6690
155
155
  atomicshop/wrappers/wslw.py,sha256=AKphiHLSddL7ErevUowr3f9Y1AgGz_R3KZ3NssW07h8,6959
156
156
  atomicshop/wrappers/certauthw/certauth.py,sha256=hKedW0DOWlEigSNm8wu4SqHkCQsGJ1tJfH7s4nr3Bk0,12223
157
157
  atomicshop/wrappers/certauthw/certauthw.py,sha256=4WvhjANI7Kzqrr_nKmtA8Kf7B6rute_5wfP65gwQrjw,8082
@@ -164,7 +164,7 @@ atomicshop/wrappers/ctyping/msi_windows_installer/extract_msi_main.py,sha256=eyF
164
164
  atomicshop/wrappers/ctyping/msi_windows_installer/tables.py,sha256=ajiFiLXl1prg2kOhatfT8E2RKX7F8JjUJpwkVuKu1GY,16263
165
165
  atomicshop/wrappers/dockerw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
166
  atomicshop/wrappers/dockerw/dockerw.py,sha256=w8zSJr5C7cbvbuG09ORCpAe0BOcibqqL_Z2EKEBHYK4,6266
167
- atomicshop/wrappers/dockerw/install_docker.py,sha256=a5CWW9RyxpOVpBekiaDMCvdgZYCXYK__czEETMoEvWg,7264
167
+ atomicshop/wrappers/dockerw/install_docker.py,sha256=CzwgBj1ckEhoNtjfAXbpOGxyoFMBvJ0hdMmaD0uJfEQ,7264
168
168
  atomicshop/wrappers/elasticsearchw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
169
  atomicshop/wrappers/elasticsearchw/config_basic.py,sha256=fDujtrjEjbWiYh_WQ3OcYp_8mXhXPYeKLy4wSPL5qM0,1177
170
170
  atomicshop/wrappers/elasticsearchw/elasticsearchw.py,sha256=7TqFdEFznO8NlligJhEKk1vm641ALpCYdaRl1uoXdzM,9768
@@ -187,7 +187,7 @@ atomicshop/wrappers/factw/fact_extractor/docker_image.py,sha256=jJAoJNQ4aoATjn3x
187
187
  atomicshop/wrappers/factw/fact_extractor/get_extractor.py,sha256=2mfOAftHIlCcGt1s7MWdq7DsDCuI6wX3MtvcEZ4SK-0,756
188
188
  atomicshop/wrappers/factw/install/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
189
  atomicshop/wrappers/factw/install/install_after_restart.py,sha256=-VXC3KDX2BzF0oi0ELCmfch55vLk-3t16KxlmYyUGD8,1560
190
- atomicshop/wrappers/factw/install/pre_install_and_install_before_restart.py,sha256=PQebNUYlj9Z8s4lRmbIUmq56t8IkaPJm0aAFDUiFjys,4505
190
+ atomicshop/wrappers/factw/install/pre_install_and_install_before_restart.py,sha256=nJEJbmSICktNoDoNLfhbMj4Vr4eY7CtR80RfJvbEM68,4442
191
191
  atomicshop/wrappers/factw/postgresql/__init__.py,sha256=xMBn2d3Exo23IPP2F_9-SXmOlhFbwWDgS9KwozSTjA0,162
192
192
  atomicshop/wrappers/factw/postgresql/analysis.py,sha256=2Rxzy2jyq3zEKIo53z8VkjuslKE_i5mq2ZpmJAvyd6U,716
193
193
  atomicshop/wrappers/factw/postgresql/file_object.py,sha256=VRiCXnsd6yDbnsE-TEKYPC-gkAgFVkE6rygRrJLQShI,713
@@ -242,8 +242,8 @@ atomicshop/wrappers/socketw/socket_server_tester.py,sha256=AhpurHJmP2kgzHaUbq5ey
242
242
  atomicshop/wrappers/socketw/socket_wrapper.py,sha256=aXBwlEIJhFT0-c4i8iNlFx2It9VpCEpsv--5Oqcpxao,11624
243
243
  atomicshop/wrappers/socketw/ssl_base.py,sha256=k4V3gwkbq10MvOH4btU4onLX2GNOsSfUAdcHmL1rpVE,2274
244
244
  atomicshop/wrappers/socketw/statistics_csv.py,sha256=t3dtDEfN47CfYVi0CW6Kc2QHTEeZVyYhc57IYYh5nmA,826
245
- atomicshop-2.11.8.dist-info/LICENSE.txt,sha256=lLU7EYycfYcK2NR_1gfnhnRC8b8ccOTElACYplgZN88,1094
246
- atomicshop-2.11.8.dist-info/METADATA,sha256=1rfRsGXI3bpnL8LjpAn0p7l8Dd7nivhxA93kugO8_Mk,10447
247
- atomicshop-2.11.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
248
- atomicshop-2.11.8.dist-info/top_level.txt,sha256=EgKJB-7xcrAPeqTRF2laD_Np2gNGYkJkd4OyXqpJphA,11
249
- atomicshop-2.11.8.dist-info/RECORD,,
245
+ atomicshop-2.11.10.dist-info/LICENSE.txt,sha256=lLU7EYycfYcK2NR_1gfnhnRC8b8ccOTElACYplgZN88,1094
246
+ atomicshop-2.11.10.dist-info/METADATA,sha256=e9oNd33n46I_qkTQHGA2HkSQ3lUTv0JCcjh3pESX-Rg,10448
247
+ atomicshop-2.11.10.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
248
+ atomicshop-2.11.10.dist-info/top_level.txt,sha256=EgKJB-7xcrAPeqTRF2laD_Np2gNGYkJkd4OyXqpJphA,11
249
+ atomicshop-2.11.10.dist-info/RECORD,,