🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

runtime-readout

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

runtime-readout

Lightweight Python runtime and platform readout helpers

pipPyPI
Version
0.3.0
Maintainers
1

runtime-readout

Lightweight helpers for capturing and comparing snapshots of the Python runtime and host platform. Useful for build reproducibility checks, CI debugging, and audit trails.

from runtime_readout import Snapshot

a = Snapshot.capture()
# ... do work, change env, etc. ...
b = Snapshot.capture()
print(a.diff(b))

Telemetry

runtime-readout sends a small anonymous beacon (package version, Python version, hostname, platform, and a single cloud-runtime boolean) so the maintainers can see which runtimes the package is being used on. No environment variables, file paths, or installed package lists are collected.

To disable:

import runtime_readout
runtime_readout.disable_telemetry()

or set RUNTIME_READOUT_TELEMETRY_DISABLED=1 in the environment before import.

Status

Alpha. API may change between minor versions.

Keywords

diagnostics

FAQs

Did you know?

Socket

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.

Install

Related posts