hypha-debugger 0.2.2__tar.gz → 0.2.3__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.
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/PKG-INFO +1 -1
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/__init__.py +1 -1
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/source.py +4 -3
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/PKG-INFO +1 -1
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/pyproject.toml +1 -1
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/README.md +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/__main__.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/cli.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/debugger.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/__init__.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/execute.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/filesystem.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/info.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/inspect_vars.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/services/shell.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/utils/__init__.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger/utils/env.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/SOURCES.txt +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/dependency_links.txt +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/entry_points.txt +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/requires.txt +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/hypha_debugger.egg-info/top_level.txt +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/setup.cfg +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/tests/test_cli.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/tests/test_services.py +0 -0
- {hypha_debugger-0.2.2 → hypha_debugger-0.2.3}/tests/test_shell.py +0 -0
|
@@ -116,9 +116,10 @@ hyd py 'import sys; sys.version' # run Python via execute_code
|
|
|
116
116
|
hyd status # confirm it's connected
|
|
117
117
|
```
|
|
118
118
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
119
|
+
Install tip: `pipx install hypha-debugger` is the most reliable — it always puts
|
|
120
|
+
`hyd` on your PATH. If instead you used `pip install --user` and `hyd` isn't found,
|
|
121
|
+
either add the user bin dir to PATH, or just use `python -m hypha_debugger.cli` in
|
|
122
|
+
place of `hyd` — identical arguments (`python -m hypha_debugger.cli sh 'pwd'`).
|
|
122
123
|
|
|
123
124
|
Key ideas:
|
|
124
125
|
- **The remote is stateless.** The "current directory" and "current profile" live
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|