machineconfig 3.0__py3-none-any.whl → 3.2__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 machineconfig might be problematic. Click here for more details.
- machineconfig/__init__.py +16 -17
- machineconfig/cluster/sessions_managers/enhanced_command_runner.py +6 -6
- machineconfig/cluster/sessions_managers/wt_local.py +7 -7
- machineconfig/cluster/sessions_managers/wt_local_manager.py +8 -8
- machineconfig/cluster/sessions_managers/wt_remote.py +8 -8
- machineconfig/cluster/sessions_managers/wt_remote_manager.py +6 -6
- machineconfig/cluster/sessions_managers/zellij_local.py +156 -77
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +18 -15
- machineconfig/cluster/sessions_managers/zellij_remote.py +14 -61
- machineconfig/cluster/sessions_managers/zellij_remote_manager.py +15 -12
- machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +9 -3
- machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +2 -2
- machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py +40 -67
- machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +19 -17
- machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py +2 -2
- machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py +1 -1
- machineconfig/jobs/python/python_ve_symlink.py +1 -1
- machineconfig/profile/create.py +8 -0
- machineconfig/scripts/linux/kill_process +1 -1
- machineconfig/scripts/python/ai/mcinit.py +1 -2
- machineconfig/scripts/python/cloud_mount.py +1 -1
- machineconfig/scripts/python/cloud_repo_sync.py +1 -0
- machineconfig/scripts/python/cloud_sync.py +1 -0
- machineconfig/scripts/python/croshell.py +1 -0
- machineconfig/scripts/python/devops.py +11 -1
- machineconfig/scripts/python/devops_add_identity.py +1 -0
- machineconfig/scripts/python/devops_add_ssh_key.py +1 -0
- machineconfig/scripts/python/devops_backup_retrieve.py +1 -0
- machineconfig/scripts/python/devops_devapps_install.py +5 -7
- machineconfig/scripts/python/devops_update_repos.py +21 -20
- machineconfig/scripts/python/fire_agents.py +21 -11
- machineconfig/scripts/python/fire_agents_help_launch.py +4 -3
- machineconfig/scripts/python/fire_agents_help_search.py +1 -2
- machineconfig/scripts/python/fire_agents_load_balancer.py +8 -10
- machineconfig/scripts/python/fire_jobs.py +1 -0
- machineconfig/scripts/python/helpers/cloud_helpers.py +1 -0
- machineconfig/scripts/python/mount_nfs.py +2 -0
- machineconfig/scripts/python/mount_nw_drive.py +1 -1
- machineconfig/scripts/python/mount_ssh.py +1 -0
- machineconfig/scripts/python/repos.py +0 -2
- machineconfig/scripts/python/repos_helper_record.py +43 -66
- machineconfig/scripts/python/repos_helper_update.py +3 -2
- machineconfig/scripts/python/start_slidev.py +1 -0
- machineconfig/scripts/python/start_terminals.py +1 -1
- machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +1 -0
- machineconfig/utils/code.py +0 -1
- machineconfig/utils/notifications.py +2 -2
- machineconfig/utils/procs.py +10 -15
- machineconfig/utils/schemas/fire_agents/fire_agents_input.py +9 -4
- machineconfig/utils/schemas/layouts/layout_types.py +2 -0
- machineconfig/utils/schemas/repos/repos_types.py +0 -3
- machineconfig/utils/ssh.py +9 -11
- machineconfig/utils/utils2.py +1 -2
- machineconfig/utils/ve.py +0 -1
- {machineconfig-3.0.dist-info → machineconfig-3.2.dist-info}/METADATA +1 -1
- {machineconfig-3.0.dist-info → machineconfig-3.2.dist-info}/RECORD +59 -59
- {machineconfig-3.0.dist-info → machineconfig-3.2.dist-info}/entry_points.txt +1 -0
- {machineconfig-3.0.dist-info → machineconfig-3.2.dist-info}/WHEEL +0 -0
- {machineconfig-3.0.dist-info → machineconfig-3.2.dist-info}/top_level.txt +0 -0
machineconfig/utils/ssh.py
CHANGED
|
@@ -123,23 +123,17 @@ class SSH: # inferior alternative: https://github.com/fabric/fabric
|
|
|
123
123
|
self.kwargs = kwargs
|
|
124
124
|
self.progress: Optional[Progress] = None
|
|
125
125
|
self.task: Optional[Any] = None
|
|
126
|
-
|
|
126
|
+
|
|
127
127
|
def __enter__(self) -> "RichProgressWrapper":
|
|
128
|
-
self.progress = Progress(
|
|
129
|
-
SpinnerColumn(),
|
|
130
|
-
TextColumn("[bold blue]{task.description}"),
|
|
131
|
-
BarColumn(),
|
|
132
|
-
FileSizeColumn(),
|
|
133
|
-
TransferSpeedColumn(),
|
|
134
|
-
)
|
|
128
|
+
self.progress = Progress(SpinnerColumn(), TextColumn("[bold blue]{task.description}"), BarColumn(), FileSizeColumn(), TransferSpeedColumn())
|
|
135
129
|
self.progress.start()
|
|
136
130
|
self.task = self.progress.add_task("Transferring...", total=0)
|
|
137
131
|
return self
|
|
138
|
-
|
|
132
|
+
|
|
139
133
|
def __exit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None:
|
|
140
134
|
if self.progress:
|
|
141
135
|
self.progress.stop()
|
|
142
|
-
|
|
136
|
+
|
|
143
137
|
def view_bar(self, transferred: int, total: int) -> None:
|
|
144
138
|
if self.progress and self.task is not None:
|
|
145
139
|
self.progress.update(self.task, completed=transferred, total=total)
|
|
@@ -223,7 +217,11 @@ class SSH: # inferior alternative: https://github.com/fabric/fabric
|
|
|
223
217
|
assert '"' not in cmd, 'Avoid using `"` in your command. I dont know how to handle this when passing is as command to python in pwsh command.'
|
|
224
218
|
if not return_obj:
|
|
225
219
|
return self.run(
|
|
226
|
-
cmd=f"""uv run --no-dev --project $HOME/code/machineconfig -c "{Terminal.get_header(wdir=None, toolbox=True)}{cmd}\n""" + '"',
|
|
220
|
+
cmd=f"""uv run --no-dev --project $HOME/code/machineconfig -c "{Terminal.get_header(wdir=None, toolbox=True)}{cmd}\n""" + '"',
|
|
221
|
+
desc=desc or f"run_py on {self.get_remote_repr()}",
|
|
222
|
+
verbose=verbose,
|
|
223
|
+
strict_err=strict_err,
|
|
224
|
+
strict_returncode=strict_returncode,
|
|
227
225
|
)
|
|
228
226
|
assert "obj=" in cmd, "The command sent to run_py must have `obj=` statement if return_obj is set to True"
|
|
229
227
|
source_file = self.run_py(f"""{cmd}\npath = Save.pickle(obj=obj, path=P.tmpfile(suffix='.pkl'))\nprint(path)""", desc=desc, verbose=verbose, strict_err=True, strict_returncode=True).op.split("\n")[-1]
|
machineconfig/utils/utils2.py
CHANGED
|
@@ -20,6 +20,7 @@ def randstr(length: int = 10, lower: bool = True, upper: bool = True, digits: bo
|
|
|
20
20
|
|
|
21
21
|
def split[T](iterable: list[T], every: int = 1, to: Optional[int] = None) -> list[list[T]]:
|
|
22
22
|
import math
|
|
23
|
+
|
|
23
24
|
every = every if to is None else math.ceil(len(iterable) / to)
|
|
24
25
|
res: list[list[T]] = []
|
|
25
26
|
for ix in range(0, len(iterable), every):
|
|
@@ -43,12 +44,10 @@ def read_ini(path: "Path", encoding: Optional[str] = None):
|
|
|
43
44
|
|
|
44
45
|
def read_json(path: "Path", r: bool = False, **kwargs: Any) -> Any: # return could be list or dict etc
|
|
45
46
|
import json
|
|
46
|
-
|
|
47
47
|
try:
|
|
48
48
|
mydict = json.loads(Path(path).read_text(encoding="utf-8"), **kwargs)
|
|
49
49
|
except Exception:
|
|
50
50
|
import pyjson5
|
|
51
|
-
|
|
52
51
|
mydict = pyjson5.loads(Path(path).read_text(encoding="utf-8"), **kwargs) # file has C-style comments.
|
|
53
52
|
_ = r
|
|
54
53
|
return mydict
|
machineconfig/utils/ve.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
machineconfig/__init__.py,sha256
|
|
1
|
+
machineconfig/__init__.py,sha256=TO5eByMRXNSfiXaDyiDjJpkNBscUUDYXsbe1JGSi5NM,822
|
|
2
2
|
machineconfig/logger.py,sha256=XLckvZ8cPDpC5v75ESP3YNTputIrDYuvoYisj0YZtGw,1415
|
|
3
3
|
machineconfig/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
machineconfig/cluster/remote/cloud_manager.py,sha256=DCkA0XCOrhdBzPJ8M0_V1TuY8Mj7MW82iHr9NN3luxU,26037
|
|
@@ -11,26 +11,26 @@ machineconfig/cluster/remote/remote_machine.py,sha256=xRuoHKNsIT0-FTFSvF1q7scnGK
|
|
|
11
11
|
machineconfig/cluster/remote/script_execution.py,sha256=4U70FDtjOh6A6C2Ei-Xh90S888q64VhRPbExoEbdepk,9980
|
|
12
12
|
machineconfig/cluster/remote/script_notify_upon_completion.py,sha256=GRxnnbnOl1-hTovTN-zI_M9wdV7x293yA77_mou9I1o,2032
|
|
13
13
|
machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
machineconfig/cluster/sessions_managers/enhanced_command_runner.py,sha256=
|
|
15
|
-
machineconfig/cluster/sessions_managers/wt_local.py,sha256
|
|
16
|
-
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=
|
|
17
|
-
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=
|
|
18
|
-
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=
|
|
19
|
-
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=
|
|
20
|
-
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=
|
|
21
|
-
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=
|
|
22
|
-
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=
|
|
14
|
+
machineconfig/cluster/sessions_managers/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
|
|
15
|
+
machineconfig/cluster/sessions_managers/wt_local.py,sha256=-e4yNxvu6ytI-u1Kihhtn_wd_qNKZMzN_WrZ9ab1qYA,18220
|
|
16
|
+
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=bwn-jCbVgwUYYEaHk-AyOLSV9cg2Ke73Y50OUNiSKpQ,24190
|
|
17
|
+
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=XmZV9rLubwxND5UYAS15mAcpzDdXvm4KyubVGYkVBmo,8743
|
|
18
|
+
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=vExLwB0cG8wubhadAgDbtaDta5PkWLUP4-5JJ_QKmYs,19761
|
|
19
|
+
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=4534jWuwHeBJo8jH76n7iKiHPswQdyRA51GJr_Mb1Do,26151
|
|
20
|
+
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=32IZf2gbB-qseTf9d3GWCYfr4C3Pl4dBDN_pfpU_nvY,24025
|
|
21
|
+
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=f2bLNbhF0zZEuaM3JLttSvTLxjWidAjVTLtGVhrec9o,8749
|
|
22
|
+
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=Jhbbty8wPsyQYUx4psTQnGEzl_euGUjkjIOhxBioAjE,8310
|
|
23
23
|
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=CFGcZPFTZQJtFf0OvMUHhadZ0qbImCP3wxvbWYVcVYo,7445
|
|
24
24
|
machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=Mitm7mKiKl5lT0OiEUHAqVg2Q21RjsKO1-hpJTHJ5lM,15196
|
|
25
25
|
machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
|
|
26
26
|
machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256=-PNcYwPqwdNRnLU9QGKxRR9i6ewY02Id-tgnODB_OzQ,12552
|
|
27
27
|
machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=EEscow4hsvLJ1roXEXxXg0QUEwetJmTq0VRm_1Vg6L0,9499
|
|
28
|
-
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=
|
|
29
|
-
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=
|
|
30
|
-
machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py,sha256=
|
|
31
|
-
machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=
|
|
32
|
-
machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=
|
|
33
|
-
machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=
|
|
28
|
+
machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=YPRUfV32_fY96SgbUHN7g2JEPQ3na6ZUg6DZePPQXRE,3112
|
|
29
|
+
machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=NciFO886EHSv3Ay30dAaq0cn78VdH8XTIlb8obnrk4A,5260
|
|
30
|
+
machineconfig/cluster/sessions_managers/zellij_utils/monitoring_types.py,sha256=MmBXNQCMm0BbRaI9T9ecSIfZE93ErsxDoGVSqHc4s8s,2669
|
|
31
|
+
machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=4SwH0i9V5Qwugzcewr3uv1Y5mjLhQAXyaGiWtOOjY7E,13696
|
|
32
|
+
machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=IMaoZ4nczs5XwPTObXno6mu0x7es4yNa9cAi4u6GkEU,2601
|
|
33
|
+
machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=7JLq8HY-NWbJfzHfxaok_o1KrIwzMCK_PUnsdZYfzuA,4929
|
|
34
34
|
machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=AtpIoko_ghhOXENGAfgiS2jA4IYBFRMjEbyIy_P6HIM,3758
|
|
35
35
|
machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
machineconfig/cluster/templates/cli_click.py,sha256=7v6w-dj1whBd9ydKeOAQFuD5kF7_6ivyPAqNl8BEvc0,5084
|
|
@@ -48,7 +48,7 @@ machineconfig/jobs/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
48
48
|
machineconfig/jobs/python/check_installations.py,sha256=o0mrZ-ivdED_7Od1tdtwJ4XSQRfiY6d_HciXLh1PXtY,11126
|
|
49
49
|
machineconfig/jobs/python/create_bootable_media.py,sha256=KKtcPk0rFLQc4eNVP6nbeYX-P7Gpqi0HvfIcUM6rVVs,827
|
|
50
50
|
machineconfig/jobs/python/python_cargo_build_share.py,sha256=RDe1QiTH3vLQ1wjN0kE5NxMIqwB-_WHz6O3svyuH_VE,2133
|
|
51
|
-
machineconfig/jobs/python/python_ve_symlink.py,sha256=
|
|
51
|
+
machineconfig/jobs/python/python_ve_symlink.py,sha256=XCeZzV1-vn56swWakHzrIAht1nkQaQ4W_Mxyx111vTM,845
|
|
52
52
|
machineconfig/jobs/python/tasks.py,sha256=hrBDQOnBmcXtauTkicVgC8J2AOGcfdFfyx0K8eI6Coc,150
|
|
53
53
|
machineconfig/jobs/python/vscode/api.py,sha256=BYF3XeNXYCpM4ApDCz2ZM1AInY4WgBqrpX9l_MWYqfM,1670
|
|
54
54
|
machineconfig/jobs/python/vscode/link_ve.py,sha256=1tXXgfWcl18K6avdhm2V7zng18opR9pfI0PSLxMFbiQ,1439
|
|
@@ -109,7 +109,7 @@ machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1,sha256=-7pElYi
|
|
|
109
109
|
machineconfig/jobs/windows/msc/cli_agents.bat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
110
|
machineconfig/jobs/windows/msc/cli_agents.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
111
|
machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
-
machineconfig/profile/create.py,sha256=
|
|
112
|
+
machineconfig/profile/create.py,sha256=jeJT92dHjD8B14_uUkpvi7TyPkAjarbw4dJAzZqfhAo,6464
|
|
113
113
|
machineconfig/profile/shell.py,sha256=HIMJvl-HZ8za7gbZn_vLZV0R6qjwcNfRFLK2bJ8ig-4,9206
|
|
114
114
|
machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
|
|
115
115
|
machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
|
|
@@ -134,7 +134,7 @@ machineconfig/scripts/linux/fzffg,sha256=jjeeyFkWmBbwH2taRqC3EOzZep2KR-ZYoI4UI-5
|
|
|
134
134
|
machineconfig/scripts/linux/fzfg,sha256=ClGnJZUsIk4y0qs3W5iXGo-nd0FaqAHMsnh8uoXQFy8,1190
|
|
135
135
|
machineconfig/scripts/linux/fzfrga,sha256=xSdws6ae28ZXkkqz_uupZ0MYw_vxE2qpLT2DLS3WITM,460
|
|
136
136
|
machineconfig/scripts/linux/gh_models,sha256=EMFUmkkYxCx6vP0SUly6OMVRXGfN1wRCInn1ilUC3HM,100
|
|
137
|
-
machineconfig/scripts/linux/kill_process,sha256=
|
|
137
|
+
machineconfig/scripts/linux/kill_process,sha256=SqK8zQNkmcQQWD8UzWmqz5T5MaKQvAyzC9ftfMIjfkY,102
|
|
138
138
|
machineconfig/scripts/linux/mcinit,sha256=ug-eE6jkkgw3o5r5B5zUqAZUD-XN-rwY6aNxhFj88DM,97
|
|
139
139
|
machineconfig/scripts/linux/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
140
140
|
machineconfig/scripts/linux/mount_nfs,sha256=kpIbAse3igReEGgnXngez2ytWucLwmb_xo6e6KeO_rs,1870
|
|
@@ -158,47 +158,47 @@ machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
158
158
|
machineconfig/scripts/python/choose_wezterm_theme.py,sha256=xCDLLJKlYNOQ0tOZ4cgkBN5hTPGn-0llkyupmoN2rb8,3320
|
|
159
159
|
machineconfig/scripts/python/cloud_copy.py,sha256=NjUOKztK5zHzK9krTPgyZCCVohooZNF48EGJ96kfIVw,8547
|
|
160
160
|
machineconfig/scripts/python/cloud_manager.py,sha256=MAVOKqXGxnlMaQGEv6k-q_PrgN0at6J8qQDhPiH2lI8,3488
|
|
161
|
-
machineconfig/scripts/python/cloud_mount.py,sha256=
|
|
162
|
-
machineconfig/scripts/python/cloud_repo_sync.py,sha256
|
|
163
|
-
machineconfig/scripts/python/cloud_sync.py,sha256=
|
|
164
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
165
|
-
machineconfig/scripts/python/devops.py,sha256=
|
|
166
|
-
machineconfig/scripts/python/devops_add_identity.py,sha256=
|
|
167
|
-
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=
|
|
168
|
-
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=
|
|
169
|
-
machineconfig/scripts/python/devops_devapps_install.py,sha256=
|
|
170
|
-
machineconfig/scripts/python/devops_update_repos.py,sha256=
|
|
161
|
+
machineconfig/scripts/python/cloud_mount.py,sha256=l2vi_j3OvhACv249slXqQbYzP8df4vTwganov_uRL1E,6802
|
|
162
|
+
machineconfig/scripts/python/cloud_repo_sync.py,sha256=cNznrOoy-kuTdcxBx1T8EipMDvmT-frq4IV5EosuVmE,9941
|
|
163
|
+
machineconfig/scripts/python/cloud_sync.py,sha256=RfgrEPGg_LrIaY3hfLDHsK8blrZvyPsoN66X0Z3WeCw,3859
|
|
164
|
+
machineconfig/scripts/python/croshell.py,sha256=6i9wUuTbbp0Miu2ZKMNyVsV4XLgkJ5YNdQkLHya2ECs,9510
|
|
165
|
+
machineconfig/scripts/python/devops.py,sha256=URi2XIAWupWxQe4NoYK_Xi-bBVVjUj6vHISHOl4DNKk,6201
|
|
166
|
+
machineconfig/scripts/python/devops_add_identity.py,sha256=FmwI3MYm5_9bIP21OffwmyOhilLnCbCbjD8KzPJIR_E,4067
|
|
167
|
+
machineconfig/scripts/python/devops_add_ssh_key.py,sha256=dcU3WqyJpEJLGK6CNUUGswo4PsZamXGYyt_vTiNOCjA,6950
|
|
168
|
+
machineconfig/scripts/python/devops_backup_retrieve.py,sha256=_nSNkCrJ0a99KjWQg-2Q6eLQ3xPyaxJrUmoXpnJXzEg,5564
|
|
169
|
+
machineconfig/scripts/python/devops_devapps_install.py,sha256=ziZ8n-VM3BFVIWSHcYnRWZXWFTMisn5bddDdf_K2bL0,8559
|
|
170
|
+
machineconfig/scripts/python/devops_update_repos.py,sha256=XZRV0_V_eKWph3fVtExKAayXhG6-svGu9UmJOh5yF-U,8066
|
|
171
171
|
machineconfig/scripts/python/dotfile.py,sha256=miL8mQH2AqPdnHSz0Cxa7qQavaOmzTD9DAF66H2PRzA,2259
|
|
172
|
-
machineconfig/scripts/python/fire_agents.py,sha256=
|
|
173
|
-
machineconfig/scripts/python/fire_agents_help_launch.py,sha256=
|
|
174
|
-
machineconfig/scripts/python/fire_agents_help_search.py,sha256=
|
|
175
|
-
machineconfig/scripts/python/fire_agents_load_balancer.py,sha256=
|
|
176
|
-
machineconfig/scripts/python/fire_jobs.py,sha256=
|
|
172
|
+
machineconfig/scripts/python/fire_agents.py,sha256=J4CadaxCnnLjUdtjyjMT2V_yqTvavPskNt3b2GYS4FI,9034
|
|
173
|
+
machineconfig/scripts/python/fire_agents_help_launch.py,sha256=vTQWEm1TZEEtI6f_I0ZxLsfZY7YWwcdDvJs4GBgmrsE,6127
|
|
174
|
+
machineconfig/scripts/python/fire_agents_help_search.py,sha256=qIfSS_su2YJ1Gb0_lu4cbjlJlYMBw0v52NTGiSrGjk8,2991
|
|
175
|
+
machineconfig/scripts/python/fire_agents_load_balancer.py,sha256=QPiCbQq9j5REHStPdYqQcGNkz_rp5CjotqOpMY3v5TM,2099
|
|
176
|
+
machineconfig/scripts/python/fire_jobs.py,sha256=g3MZsk_DqQc78jArEcEbjmgcRZRRea16TGieT_UuuM4,16643
|
|
177
177
|
machineconfig/scripts/python/fire_jobs_args_helper.py,sha256=TfCKSExGZhYrZ6JmXIHsd0wpNSWcKeLeRh9gFR3FG-M,4330
|
|
178
178
|
machineconfig/scripts/python/fire_jobs_layout_helper.py,sha256=_cx6ZnWezes-s13HXyKiI16vj9gF-Mpo_OF4StDQfFs,3222
|
|
179
179
|
machineconfig/scripts/python/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
180
|
machineconfig/scripts/python/ftpx.py,sha256=WQ-6Z043q3yQOgWQV9g-R5QjouilWC0grOc6hydvbvg,9914
|
|
181
181
|
machineconfig/scripts/python/get_zellij_cmd.py,sha256=e35-18hoXM9N3PFbvbizfkNY_-63iMicieWE3TbGcCQ,576
|
|
182
182
|
machineconfig/scripts/python/gh_models.py,sha256=3BLfW25mBRiPO5VKtVm-nMlKLv-PaZDw7mObajq6F6M,5538
|
|
183
|
-
machineconfig/scripts/python/mount_nfs.py,sha256=
|
|
184
|
-
machineconfig/scripts/python/mount_nw_drive.py,sha256=
|
|
185
|
-
machineconfig/scripts/python/mount_ssh.py,sha256=
|
|
183
|
+
machineconfig/scripts/python/mount_nfs.py,sha256=8DlspWhg82BFlbADLNivLhZV5hhRPu7NXKhMcu_VnKs,3316
|
|
184
|
+
machineconfig/scripts/python/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
|
|
185
|
+
machineconfig/scripts/python/mount_ssh.py,sha256=Mr1KiiiZzQZJ3su3bW1zBi6UQTSVtTnBmJUVMAAYemI,2235
|
|
186
186
|
machineconfig/scripts/python/onetimeshare.py,sha256=bmGsNnskym5OWfIhpOfZG5jq3m89FS0a6dF5Sb8LaZM,2539
|
|
187
187
|
machineconfig/scripts/python/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
|
|
188
|
-
machineconfig/scripts/python/repos.py,sha256=
|
|
189
|
-
machineconfig/scripts/python/repos_helper_record.py,sha256=
|
|
190
|
-
machineconfig/scripts/python/repos_helper_update.py,sha256=
|
|
188
|
+
machineconfig/scripts/python/repos.py,sha256=Ek4OzIsn7hnLpOCHDayEN6cPlBoMLy8w1MQ2Jr7aEJQ,7227
|
|
189
|
+
machineconfig/scripts/python/repos_helper_record.py,sha256=LJQcUIOsWqM7jfdqmmxthkVgusndbUNWNoYXbdgz5qU,10931
|
|
190
|
+
machineconfig/scripts/python/repos_helper_update.py,sha256=AYyKIB7eQ48yoYmFjydIhRI1lV39TBv_S4_LCa-oKuQ,11042
|
|
191
191
|
machineconfig/scripts/python/scheduler.py,sha256=7IBjMMOHMkklcWzYwz93EH9XzbJ5uPqU03bJ_lYbRNo,3083
|
|
192
192
|
machineconfig/scripts/python/snapshot.py,sha256=aDvKeoniZaeTSNv9zWBUajaj2yagAxVdfuvO1_tgq5Y,1026
|
|
193
|
-
machineconfig/scripts/python/start_slidev.py,sha256=
|
|
194
|
-
machineconfig/scripts/python/start_terminals.py,sha256=
|
|
193
|
+
machineconfig/scripts/python/start_slidev.py,sha256=WA-BRlGA-Ikei0smEYL14rGnf9ajk4DqTa-4Y9Ht-DY,4526
|
|
194
|
+
machineconfig/scripts/python/start_terminals.py,sha256=pVf-Qmymevzr0xhDu9um9E0-kSRX8MdDupvGyTMv2Mc,6206
|
|
195
195
|
machineconfig/scripts/python/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
196
196
|
machineconfig/scripts/python/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
197
197
|
machineconfig/scripts/python/wifi_conn.py,sha256=2FJ4srVthGHsy3KSXpvndAyVkNO8n_XeSgVRnd_PjZA,15576
|
|
198
198
|
machineconfig/scripts/python/wsl_windows_transfer.py,sha256=RfSf5SJejnqrg36YfXSwu52ceEW77uNP4WC6QQUyRTA,3650
|
|
199
199
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
200
|
machineconfig/scripts/python/ai/generate_files.py,sha256=Vfjgd0skJu-WTgqUxmOVFzaNMfSFBaFmY5oGGVY7MZY,2860
|
|
201
|
-
machineconfig/scripts/python/ai/mcinit.py,sha256=
|
|
201
|
+
machineconfig/scripts/python/ai/mcinit.py,sha256=QkTPmhyl9K5BJgQkvXVvOm-tsYSN0YCoNl3vndo6rok,5489
|
|
202
202
|
machineconfig/scripts/python/ai/chatmodes/Thinking-Beast-Mode.chatmode.md,sha256=Tu-fWxX_FLiIBRdgOndMhewK41kIHDoYxuGZ1kF6dYA,17947
|
|
203
203
|
machineconfig/scripts/python/ai/chatmodes/Ultimate-Transparent-Thinking-Beast-Mode.chatmode.md,sha256=kB8u_QAZar9StuywXcbPTUCbAVHKin0s0brssOroK5o,29019
|
|
204
204
|
machineconfig/scripts/python/ai/chatmodes/deepResearch.chatmode.md,sha256=WRbZXkdOPw5pVAFjR51n9IRTtqw3TE7jUt4BNyN5Z8k,5165
|
|
@@ -211,7 +211,7 @@ machineconfig/scripts/python/archive/im2text.py,sha256=WLyic89vxi_pqQMzo-MOrGf39
|
|
|
211
211
|
machineconfig/scripts/python/archive/tmate_conn.py,sha256=BiZQmYabl4K4-mbOpcb_R1JzYfEwxuAnk5FOciqGHFo,1231
|
|
212
212
|
machineconfig/scripts/python/archive/tmate_start.py,sha256=Hp7xv32u-fRuCG_f-Cy6qg0VemoaPOP-Pxs_gsFYcyg,1518
|
|
213
213
|
machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
-
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=
|
|
214
|
+
machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=U74O75g0QWh1P6JJZlU26XD2mSRdZJz-T1aUN9yZhH4,4875
|
|
215
215
|
machineconfig/scripts/python/helpers/helpers2.py,sha256=TU1sA0GKNXHXT1_0y8piBLT_BeXfk0uBmkmUeyVYj58,7295
|
|
216
216
|
machineconfig/scripts/python/helpers/helpers4.py,sha256=SFYfxRleEq3gIbffIxFM8d1Ra5zNheUuTIOi2iBsqlE,7708
|
|
217
217
|
machineconfig/scripts/python/helpers/helpers5.py,sha256=dPBvA9Tcyx9TMgM6On49A1CueGMhBdRzikDnlJGf3J0,1123
|
|
@@ -372,25 +372,25 @@ machineconfig/setup_windows/web_shortcuts/ssh.ps1,sha256=Tj9axEugJE7I3AQ0w1eUGLP
|
|
|
372
372
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
373
373
|
machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=JsQfGAMkvirhiUmBNOifMlbum2PfHSs0-Akgj-J-WZw,3177
|
|
374
374
|
machineconfig/setup_windows/wt_and_pwsh/install_nerd_fonts.py,sha256=JgJZMP93xPQwr_6tsRmimOMllu-vsXn6ZgW-4ZEfRt0,4538
|
|
375
|
-
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=
|
|
375
|
+
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=77mFot76k0CsWtVufQ1K1AfL6vf_QoyG3JRhUigxwyI,6115
|
|
376
376
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
|
-
machineconfig/utils/code.py,sha256=
|
|
377
|
+
machineconfig/utils/code.py,sha256=1uB7NnswsTkv8rjctducqHIi78oSW39AfhnipJrN2fo,4458
|
|
378
378
|
machineconfig/utils/installer.py,sha256=725N-0gmMbrWWh6_9sn-2w9aXrfjIPrnuu9o13T4N4o,10941
|
|
379
379
|
machineconfig/utils/io_save.py,sha256=iC1YTH0MOlBS8bWUB8Xhdl4CG_bEKQ3OVwMohdCOazI,3145
|
|
380
380
|
machineconfig/utils/links.py,sha256=5rDQ6Id-vTtJRFwOWX8xZDXIOR5lY0DgLy0HpxIKLhk,10247
|
|
381
|
-
machineconfig/utils/notifications.py,sha256=
|
|
381
|
+
machineconfig/utils/notifications.py,sha256=xG2b4NYNBtVq_kTR3gwdl3hrH1LRgRSpGegZ-BfWjdw,9299
|
|
382
382
|
machineconfig/utils/options.py,sha256=wCP1oN-UFl8CbcCfJ7Orw_Ghy2ZKqNLiolzCGeRVfuk,8535
|
|
383
383
|
machineconfig/utils/path.py,sha256=csRyffpWYY5-sqeQCZyWi_z4b295EAztEmZWyvFYRW8,8012
|
|
384
384
|
machineconfig/utils/path_reduced.py,sha256=hccGUTSMtggU-LpLNS7W_c1s-CqhjHMbTQ59-1EqgmY,52473
|
|
385
|
-
machineconfig/utils/procs.py,sha256=
|
|
385
|
+
machineconfig/utils/procs.py,sha256=zKSUMQfveP4HqoUkcslCTposvbasCM7nbXjlwHcjJLk,11379
|
|
386
386
|
machineconfig/utils/scheduling.py,sha256=8xjeoR_D5QHT0d7299Mgsj6JUbvkE_PX_pWq3myi658,11184
|
|
387
387
|
machineconfig/utils/source_of_truth.py,sha256=GnjcVkKm11RyZFHGnPbne5YDEBYoZ5yryBNkpfGC7O4,854
|
|
388
|
-
machineconfig/utils/ssh.py,sha256=
|
|
388
|
+
machineconfig/utils/ssh.py,sha256=1FTu1joRciyioQ-KSn_IeZYsyOt1KIGHXS81fjBPY9U,21090
|
|
389
389
|
machineconfig/utils/terminal.py,sha256=k3xoMwJPGvmaeL9CxEIwrcQjRNN6EnJItoIIxXrUY8c,12258
|
|
390
390
|
machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
|
|
391
|
-
machineconfig/utils/utils2.py,sha256=
|
|
391
|
+
machineconfig/utils/utils2.py,sha256=6u790Np0xDmYCKnxUHrnuBGwRhvEnkqD7hkl1BjdjG8,2971
|
|
392
392
|
machineconfig/utils/utils5.py,sha256=s2NFUBcm4Jeuet8sUC7WKGSrYT4BnqTog39bsynXLik,15166
|
|
393
|
-
machineconfig/utils/ve.py,sha256=
|
|
393
|
+
machineconfig/utils/ve.py,sha256=Qbpg6iu5kFI_IdVe7p_UvAw55O0MYQGs8oC4AdI0fpw,2764
|
|
394
394
|
machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
395
|
machineconfig/utils/ai/generate_file_checklist.py,sha256=HVPSKM5ko17e_x1rHZ8XATaUKUVo4gtlSYGKbGd7Mh0,2834
|
|
396
396
|
machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=ZTVkqgrwbV_EoPvyT8dyOTUE0ur3BW4sa9o6QYtt5Bo,2341
|
|
@@ -398,11 +398,11 @@ machineconfig/utils/cloud/onedrive/transaction.py,sha256=m-aNcnWj_gfZVvJOSpkdIqj
|
|
|
398
398
|
machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
399
|
machineconfig/utils/installer_utils/installer_abc.py,sha256=jR5XvrCjisIzoxk2VL0VhoVv-PkKdstDHGLcYky5Mqs,5319
|
|
400
400
|
machineconfig/utils/installer_utils/installer_class.py,sha256=3jknokPmaN4LuBR5n6LrewIYo4-PrTuhYnFJIuhjjuY,20342
|
|
401
|
-
machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=
|
|
402
|
-
machineconfig/utils/schemas/layouts/layout_types.py,sha256=
|
|
403
|
-
machineconfig/utils/schemas/repos/repos_types.py,sha256=
|
|
404
|
-
machineconfig-3.
|
|
405
|
-
machineconfig-3.
|
|
406
|
-
machineconfig-3.
|
|
407
|
-
machineconfig-3.
|
|
408
|
-
machineconfig-3.
|
|
401
|
+
machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=CCs5ebomW1acKWZRpv9dyDzM-W6pwvVplikcutE2D8I,2339
|
|
402
|
+
machineconfig/utils/schemas/layouts/layout_types.py,sha256=OmiOX9xtakPz4l6IobWnpFHpbn95fitEE9q0YL1WxjQ,617
|
|
403
|
+
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
404
|
+
machineconfig-3.2.dist-info/METADATA,sha256=DLVMoEHr417RCJZ47719pL_IJHoz50i2HqIivmp6nkA,7048
|
|
405
|
+
machineconfig-3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
406
|
+
machineconfig-3.2.dist-info/entry_points.txt,sha256=nBemaVdIfKeDNH11op15aSDIqP_nWxas8JSm0XFoidc,1023
|
|
407
|
+
machineconfig-3.2.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
408
|
+
machineconfig-3.2.dist-info/RECORD,,
|
|
@@ -9,6 +9,7 @@ devops = machineconfig.scripts.python.devops:args_parser
|
|
|
9
9
|
fire = machineconfig.scripts.python.fire_jobs:main
|
|
10
10
|
fire_agents = machineconfig.scripts.python.fire_agents:main
|
|
11
11
|
ftpx = machineconfig.scripts.python.ftpx:main
|
|
12
|
+
kill_process = machineconfig.utils.procs:main
|
|
12
13
|
mcinit = machineconfig.scripts.python.ai.mcinit:main
|
|
13
14
|
mount_nfs = machineconfig.scripts.python.mount_nfs:main
|
|
14
15
|
mount_nw_drive = machineconfig.scripts.python.mount_nw_drive:main
|
|
File without changes
|
|
File without changes
|