You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python distribution that ships a platform-specific `ct` executable and exposes helpers for loading the binary at runtime. Wheel artifacts are expected per (OS, architecture) combination.
4
+
This package delivers the CodeTracer time-traveling debugger binaries to Python
5
+
environments. Wheels are produced per operating system and CPU architecture and
6
+
ship the `ct` application together with a thin Python wrapper that locates and
7
+
launches the bundled executables.
4
8
5
-
## Usage
9
+
## Installation
6
10
7
-
```python
8
-
from ct import get_executable_path, run_binary
9
-
10
-
path = get_executable_path() # Resolve binary matching the host platform
11
-
run_binary(["--help"], check=False) # Invoke the executable passing CLI arguments
11
+
```bash
12
+
python -m pip install codetracer
12
13
```
14
+
15
+
### Command line entry points
16
+
17
+
The package also publishes two console scripts:
18
+
19
+
*`ct` – invokes the CodeTracer CLI.
20
+
21
+
Arguments passed to these entry points are forwarded directly to the underlying
0 commit comments