
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
trame-image-tools
Advanced tools
trame-image-toolsA set of trame widgets to create a zoom and pan 2D image environment that includes interactive area selection widgets.

pip install trame-image-tools
from trame_image_tools.widgets import (
TrameImage,
TrameImageRoi,
TrameImageLine,
TrameImageCircle,
TrameImagePolygon,
TrameImageGrid,
)
with TrameImage(
src="https://www.kitware.com/main/wp-content/uploads/2023/10/logo-trame.png",
size=("size", [800, 210]),
):
TrameImageGrid(
spacing=("grid_spacing", [50, 25]), # [x_tick_spacing, y_tick_spacing]
)
TrameImageLine(
v_model=("line", [200, 50, 300, 150]), # [x0, y0, x1, y1, ...]
)
TrameImageRoi(
v_model=("roi", [350, 50, 100, 100]), # [x, y, width, height]
)
TrameImageCircle(
v_model=("circle", [550, 100, 50]), # [x, y, radius]
)
TrameImagePolygon(
v_model=("polygon", [650, 90, 670, 150, 730, 150, 750, 90, 700, 50]), # [x0, y0, x1, y1, ...]
)
FAQs
A trame package to display, manipulate, and select regions in images.
We found that trame-image-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.