🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More →
Socket
Book a DemoSign in
Socket

runtime-probe

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-probe

Opt-in Python runtime and platform probing helpers

pipPyPI
Version
0.3.0
Maintainers
1

runtime-probe

Helpers for probing the Python runtime and host platform. Mirrors the shape of runtime-introspect but ships with an explicit opt-in maintainer probe instead of automatic telemetry on import.

from runtime_probe import Snapshot, describe_platform

snap = Snapshot.capture()
print(describe_platform())

Maintainer probe

runtime-probe does not send any data on import. If you want to help the maintainers see which runtimes the package is being used on, call the probe explicitly:

import runtime_probe
runtime_probe.report_runtime()

The payload is the same shape as runtime-introspect: package version, Python version, hostname, platform, architecture, and a single cloud-runtime boolean. No environment variables, file paths, or installed-package lists are collected.

The endpoint can be overridden via RUNTIME_PROBE_ENDPOINT.

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