Steps
Ask what to profile. Suggest common patterns for this repo:
import spatialdatafrom spatialdata import SpatialDatafrom spatialdata_io import xenium
Run:
profimp --html "<import_stmt>" > /tmp/profimp.html
- Open the report:
- macOS:
open /tmp/profimp.html - Linux:
xdg-open /tmp/profimp.html - Either:
python -m webbrowser /tmp/profimp.html
- macOS:
Notes
- The report is a waterfall chart showing every sub-import and its timing.
- To compare before/after:
cp /tmp/profimp.html /tmp/profimp-before.htmlbefore re-running. pixi run python -m profimpalso works ifprofimpis not on PATH.