Skip to main content

System resource info, processor usage logging, RAM limit — standalone module from the SciTeX ecosystem

Project description

scitex-resource

SciTeX

System resource info, processor usage logging, RAM limiting + host-identity config.

Full Documentation · uv pip install scitex-resource[all]

PyPI Python Tests Coverage Docs License: AGPL v3


Installation

pip install scitex-resource

Architecture

src/scitex_resource/
├── __init__.py                # public API surface (lazy via __getattr__)
├── _host.py                   # canonical host name + host config resolution
├── _machine.py                # deprecated aliases → _host (back-compat)
├── _runtime.py                # SCITEX_DIR-aware runtime path resolver
├── _log_processor_usages.py   # CPU / RAM / GPU / VRAM CSV logger
├── limit_ram.py               # cap process RSS via resource.RLIMIT_AS
├── _compat.py                 # vendored str / gen helpers (decoupling)
├── _cli/                      # Click-based CLI (hosts, specs, metrics, …)
├── _mcp/                      # FastMCP server (Python-API mirror)
├── _utils/                    # psutil wrappers (metrics / specs)
└── _specs/                    # rich human-readable snapshot helpers

1 Interfaces

Python API
import scitex_resource as r

# Hub-friendly metrics (cross-platform via psutil)
metrics = r.get_metrics()

# Canonical host identity
name = r.get_host_name()
cfg = r.get_host_config()        # {"canonical_name", "aliases", "role", "hpc": {...}}

# Rich snapshot
specs = r.get_specs()

# CPU/RAM/GPU/VRAM samples + continuous CSV logging
usage = r.get_processor_usages()
r.log_processor_usages(limit_min=30, interval_s=1)
# default: ~/.scitex/resource/runtime/processor_usages.csv

# Cap process RAM
r.limit_ram(0.5)
CLI
# Host identity
$ scitex-resource hosts show
$ scitex-resource hosts config show --json

# System specs and live metrics
$ scitex-resource specs
$ scitex-resource metrics show --json

# Processor usage snapshot + continuous CSV log
$ scitex-resource processor-usages show --json
$ scitex-resource processor-usages log --interval 5 --max-rows 12

# Cap process RAM
$ scitex-resource ram-limit 0.8

Demo

flowchart LR
    env["$SCITEX_RESOURCE_HOST"] --> resolve["resolve canonical name"]
    proj["./.scitex/resource/config.yaml"] --> resolve
    home["~/.scitex/resource/config.yaml"] --> resolve
    host["socket.gethostname()"] --> resolve
    resolve --> name["get_host_name() → 'mba'"]
    resolve --> cfg["get_host_config()"]
    psutil["psutil"] --> metrics["get_metrics()"]
    metrics --> snapshot[("cpu / mem / disk / gpu / load")]
    psutil --> log["log_processor_usages(limit_min=30)"]
    log --> csv[("~/.scitex/resource/runtime/processor_usages.csv")]

Quick Start

import scitex_resource as r

print(r.get_host_name())           # canonical host identity
metrics = r.get_metrics()          # cpu / mem / disk / gpu / load
specs = r.get_specs()              # rich human-readable snapshot

Host identity config — ~/.scitex/resource/config.yaml

host:
  canonical_name: mba                 # what every scitex-* package uses to refer to this host
  aliases:                            # optional; cross-package discovery / drift detection
    - Yusukes-MacBook-Air
    - Yusukes-MacBook-Air.local
  role: head                          # generic role tag (head, worker, hpc-login, ...)
  hpc:                                # optional; HPC-only
    cluster: spartan
    login_only: true
    partitions: [physical, sapphire]

Resolution cascade (highest precedence first):

  1. $SCITEX_RESOURCE_HOST
  2. <project>/.scitex/resource/config.yaml host.canonical_name
  3. ~/.scitex/resource/config.yaml host.canonical_name
  4. socket.gethostname().split(".", 1)[0]

(Deprecated $SCITEX_RESOURCE_MACHINE and machine: config block are still honoured as fallbacks with a one-time DeprecationWarning.)

Status

Standalone fork of scitex.resource. Deps: pandas, psutil, PyYAML, click.

Decoupling notes:

  • scitex.str.readable_bytes / scitex.gen.fmt_size / scitex.str.printc → vendored as small helpers in _compat.py.
  • scitex.io._load.load / scitex.io._save.save → use pandas.read_csv / to_csv directly for the CSV log files.
  • scitex.sh.sh → prefer scitex_sh if installed, fall back to plain subprocess.run (list-only).

The umbrella package's scitex.resource import path is preserved via a sys.modules-alias bridge.

Part of SciTeX

scitex-resource is part of SciTeX. Install via the umbrella with pip install scitex[resource] to use as scitex.resource (Python) or scitex resource ... (CLI).

Four Freedoms for Research

  1. The freedom to run your research anywhere — your machine, your terms.
  2. The freedom to study how every step works — from raw data to final manuscript.
  3. The freedom to redistribute your workflows, not just your papers.
  4. The freedom to modify any module and share improvements with the community.

AGPL-3.0 — because we believe research infrastructure deserves the same freedoms as the software it runs on.

License

AGPL-3.0-only (see LICENSE).


SciTeX

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scitex_resource-0.4.3.tar.gz (7.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scitex_resource-0.4.3-py3-none-any.whl (7.8 MB view details)

Uploaded Python 3

File details

Details for the file scitex_resource-0.4.3.tar.gz.

File metadata

  • Download URL: scitex_resource-0.4.3.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for scitex_resource-0.4.3.tar.gz
Algorithm Hash digest
SHA256 142d644005d7aa7bfa17790bc8c97a30ea77c86c38c49262528661460d715d40
MD5 9b2f1c0059c1834a764bbb83e06b78e0
BLAKE2b-256 f64fdd5677d777ae5ba5be4233bfee2b040d99d19485d4c15f5f71450fe44c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitex_resource-0.4.3.tar.gz:

Publisher: pypi-publish-and-github-release-on-tag.yml on ywatanabe1989/scitex-resource

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scitex_resource-0.4.3-py3-none-any.whl.

File metadata

File hashes

Hashes for scitex_resource-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 118ec10fd0db5d47bb0fd50f1e743c20f65ec758ad69934935208330711855eb
MD5 07eb1685d0f639673d60a8f5d57c0845
BLAKE2b-256 20a916a2f5a85d4eb6c7f703ab8043d7c26fc6633bc153bdafa8f68f85ecb853

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitex_resource-0.4.3-py3-none-any.whl:

Publisher: pypi-publish-and-github-release-on-tag.yml on ywatanabe1989/scitex-resource

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page